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

/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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


/* =========================
   GLOBAL / REUSABLE
========================= */
.logo span,
.hero h1 span,
.about h2 span,
.portfolio h2 span,
.section-label,
.stats h2 {
  color: #c1121f;
}

.section-label {
  margin-bottom: 24px;
  color: #888;
  font-size: 14px;
}


/* =========================
   HEADER / NAV
========================= */
.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;
  letter-spacing: -1px;
}

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;
}


/* =========================
   HERO SECTION
========================= */
.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  font-size: 110px;
  line-height: .9;
  font-weight: 900;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 21px;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 34px;
  max-width: 620px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 2px,
      transparent 6px
    );
  opacity: 0.08;
  pointer-events: none;
}

/* hero visual background layer */
.hero-visual-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  background: #060606; /* dark fallback when image is absent */
  z-index: 0;
}

/* hero photograph — fills visual zone, sits under all overlays */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* TODO: adjust per final image subject position */
  display: block;
  z-index: 0;
}

/* left-edge gradient fade + scanlines — render above hero image */
.hero-visual-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 2px,
      transparent 6px
    ),
    linear-gradient(
      to right,
      #050505 0%,
      rgba(5,5,5,0.7) 30%,
      rgba(5,5,5,0.15) 70%,
      rgba(5,5,5,0.05) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* subtle red frame on right/top edges */
.hero-visual-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(193,18,31,0.25);
  border-right: 1px solid rgba(193,18,31,0.25);
  z-index: 2;
  pointer-events: none;
}

.hero-visual-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #c1121f;
  text-transform: uppercase;
  position: absolute;
  top: 16px;
  right: 20px;
  opacity: 0.5;
  z-index: 3;
}

.hero-visual-status {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: #2a2a2a;
  text-transform: uppercase;
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 3;
}

.hero-status {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 30px;
}

.hero-status::after {
  content: "█";
  color: #c1121f;
  margin-left: 6px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: #c1121f;
}

.hero h1 span::before {
  content: attr(data-text);
  position: absolute;
  left: -3px;
  top: 0;
  color: #ff2a2a;
  opacity: 0.65;
  clip-path: inset(0 0 50% 0);
  animation: glitchTop 1.8s infinite linear;
}

.hero h1 span::after {
  content: attr(data-text);
  position: absolute;
  left: 3px;
  top: 0;
  color: #9b0d16;
  opacity: 0.65;
  clip-path: inset(50% 0 0 0);
  animation: glitchBottom 1.8s infinite linear;
}

@keyframes glitchTop {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-3px, -2px); }
  40% { transform: translate(3px, 1px); }
  60% { transform: translate(-2px, 1px); }
  80% { transform: translate(2px, -1px); }
}

@keyframes glitchBottom {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(3px, 1px); }
  40% { transform: translate(-3px, -1px); }
  60% { transform: translate(2px, -2px); }
  80% { transform: translate(-2px, 2px); }
}
/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  background: #c1121f;
  color: white;
  padding: 16px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.btn:hover {
  background: #e11928;
}

.btn-outline {
  color: #c1121f;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 10px;
}

.btn-outline:hover {
  color: white;
}


/* =========================
   PILLARS (SYSTEM STYLE)
========================= */
.pillars {
  padding: 70px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.pillars div {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid #2a1114;
  background: #070707;
  overflow: hidden;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

/* spacer — RAWHALL_SYS label removed from repeated cards */
.pillars div::before {
  content: "";
  display: block;
  margin-bottom: 24px;
}

/* loading bar — base (position + border only) */
.pillars div::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 12px;
  border: 1px solid #c1121f;
  opacity: 0.8;
}

.pillars h3 {
  color: #f5f5f5;
  font-size: 22px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pillars h3::before {
  content: "> ";
  color: #c1121f;
}

.pillars p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
}

.pillars div:hover {
  border-color: #c1121f;
}

/* ---- VISION: wide fill, slow steady signal ---- */
.system-bar--vision::after {
  background: linear-gradient(to right, #c1121f, #c1121f);
  background-repeat: no-repeat;
  background-size: 72% 100%;
  animation: visionPulse 3.6s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes visionPulse {
  0%   { background-size: 70% 100%; opacity: 0.5; }
  32%  { background-size: 80% 100%; opacity: 1; }
  58%  { background-size: 66% 100%; opacity: 0.55; }
  80%  { background-size: 76% 100%; opacity: 0.9; }
  100% { background-size: 70% 100%; opacity: 0.5; }
}

.system-bar--vision:hover::after { animation-duration: 1.8s; }

/* ---- CONTROL: medium fill, measured pulse ---- */
.system-bar--control::after {
  background: linear-gradient(to right, #c1121f, #c1121f);
  background-repeat: no-repeat;
  background-size: 62% 100%;
  animation: controlPulse 4.2s ease-in-out infinite;
  animation-delay: 0.9s;
}

@keyframes controlPulse {
  0%   { background-size: 60% 100%; opacity: 0.5; }
  38%  { background-size: 68% 100%; opacity: 0.95; }
  62%  { background-size: 57% 100%; opacity: 0.5; }
  84%  { background-size: 65% 100%; opacity: 0.85; }
  100% { background-size: 60% 100%; opacity: 0.5; }
}

.system-bar--control:hover::after { animation-duration: 2s; }

/* ---- SYSTEMS: shorter fill, quieter pulse ---- */
.system-bar--systems::after {
  background: linear-gradient(to right, #c1121f, #c1121f);
  background-repeat: no-repeat;
  background-size: 48% 100%;
  animation: systemsPulse 3s ease-in-out infinite;
  animation-delay: 1.7s;
}

@keyframes systemsPulse {
  0%   { background-size: 46% 100%; opacity: 0.45; }
  30%  { background-size: 56% 100%; opacity: 0.9; }
  55%  { background-size: 42% 100%; opacity: 0.4; }
  78%  { background-size: 52% 100%; opacity: 0.8; }
  100% { background-size: 46% 100%; opacity: 0.45; }
}

.system-bar--systems:hover::after { animation-duration: 1.5s; }

/* ---- RAWNESS: irregular distortion, reference bar ---- */
.system-bar--rawness::after {
  background: linear-gradient(to right, #c1121f, #c1121f);
  background-repeat: no-repeat;
  background-size: 55% 100%;
  animation: rawnessPulse 2.6s ease-in-out infinite;
  animation-delay: 0.4s;
}

@keyframes rawnessPulse {
  0%   { background-size: 54% 100%; opacity: 0.55; }
  28%  { background-size: 71% 100%; opacity: 1; }
  52%  { background-size: 46% 100%; opacity: 0.45; }
  76%  { background-size: 64% 100%; opacity: 0.85; }
  100% { background-size: 54% 100%; opacity: 0.55; }
}

.system-bar--rawness:hover::after { animation-duration: 1.1s; }

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .system-bar--vision::after,
  .system-bar--control::after,
  .system-bar--systems::after,
  .system-bar--rawness::after {
    animation: none;
    opacity: 0.7;
  }
}



/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio {
  position: relative; /* REQUIRED */
  padding: 80px 60px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  scroll-margin-top: 150px;
}

.portfolio .section-label {
  position: absolute;
  top: 30px;
  right: 60px;

  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #c1121f;
  opacity: 0.4;

  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #c1121f;

  width: 0;
  animation:
    typingPortfolio 2.2s steps(20, end) 0.4s forwards,
    glitchCursor 1.1s steps(1) infinite;
}

@keyframes typingPortfolio {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

@keyframes glitchCursor {
  0%, 40%, 60%, 100% {
    border-color: #c1121f;
  }

  50%, 52% {
    border-color: transparent;
  }

  55% {
    border-color: #c1121f;
  }
}

.portfolio h2 {
  font-size: 56px;
  margin-bottom: 18px; /* tighter */
  line-height: 0.95;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* linked card reset */
a.portfolio-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CARD */
.card-header::after {
  content: "_";
  margin-left: 6px;
  animation: blink 1s steps(1) infinite;
  color: #c1121f;
}

.portfolio-card {
  position: relative;
  border: 1px solid #222;
  background: #050505;
  padding: 14px;
  min-height: 340px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  transition: 0.3s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.portfolio-card:hover {
  border-color: #c1121f;
}

.portfolio-card:hover .card-header {
  color: #c1121f;
}

.portfolio-card:hover img {
  filter: grayscale(0%) contrast(110%);
}

.portfolio-sub {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 30px;
}

/* HEADER */
.card-header {
  color: #c1121f;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* IMAGE */
.card-preview {
  height: 240px;
  border: 1px solid #333;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(65%);
  transition: 0.4s ease;
}

/* META */
.card-meta p {
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* SCANLINES */
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 2px,
      transparent 6px
    );
  opacity: 0.05;
  pointer-events: none;
}

/* HOVER EFFECT */
.portfolio-card:hover {
  border-color: #c1121f;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(90%);
}

.portfolio-card:hover .card-header {
  opacity: 1;
}

.portfolio-card:hover .card-meta p {
  color: #ccc;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
  min-height: 420px;
  padding: 80px 60px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-inner1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifesto-panel {
  width: 100%;
  max-width: 380px;
}

.manifesto-panel-inner {
  border: 1px solid #c1121f;
  background: #070707;
  padding: 28px;
  position: relative;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.manifesto-panel-inner::before,
.manifesto-panel-inner::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
}

.manifesto-panel-inner::before {
  top: -1px;
  right: -1px;
  border-top: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
}

.manifesto-panel-inner::after {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid #f5f5f5;
  border-left: 2px solid #f5f5f5;
}

.manifesto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.manifesto-prefix {
  font-size: 10px;
  letter-spacing: 1px;
  color: #c1121f;
  text-transform: uppercase;
}

.manifesto-tag {
  font-size: 9px;
  letter-spacing: 2px;
  color: #333;
  border: 1px solid #222;
  padding: 2px 6px;
  text-transform: uppercase;
}

.manifesto-body {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  border-left: 2px solid #c1121f;
  padding-left: 16px;
  margin-bottom: 24px;
}

.manifesto-footer {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1px;
  color: #333;
  border-top: 1px solid #1a1a1a;
  padding-top: 12px;
}

.about-inner2 {
  max-width: 520px;
  margin-left: auto;
}

.about-inner2 .section-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: #c1121f;
  opacity: 0.5;
}

.about-inner2 h2 {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 18px;
}

.about-inner2 p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

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

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



/* =========================
   STATS SECTION
========================= */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.stats div {
  position: relative;
  padding: 60px 30px;
  text-align: center;
  border-right: 1px solid #222;
  overflow: hidden;
}

.stats div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 60%;
  background: #c1121f;
  opacity: 0.6;
}

.stats div:hover::after {
  animation: statPulse 1.2s infinite;
}

@keyframes statPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.stats h2 {
  font-size: 72px;
  color: #c1121f;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.stats h2:hover {
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.stats p {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
}



/* =========================
   FOOTER
========================= */
.footer {
  padding: 40px;
  text-align: center;
  color: #777;
  border-top: 1px solid #222;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.footer-logo {
  color: #777;
  font-weight: 800;
  letter-spacing: 2px;
}

.manager-link {
  color: #777;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 2px;
}

.manager-link:hover {
  color: #c1121f;
}

.social-link {
  color: #777;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 2px;
}

.social-link:hover {
  color: #c1121f;
}


/* =========================
   PORTFOLIO FOOTER
========================= */
.portfolio-footer {
  margin-top: 30px;
  text-align: right;
}


/* =========================
   AVAILABILITY SIGNAL
========================= */
.availability-signal {
  padding: 60px;
  border-bottom: 1px solid #222;
}

.signal-status {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #c1121f;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.signal-text {
  color: #aaa;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 560px;
}

.signal-link {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: #c1121f;
  text-decoration: none;
  text-transform: uppercase;
}

.signal-link:hover {
  color: #f5f5f5;
}


/* =========================
   WALK THE HALL PROMPT
========================= */
.walk-prompt {
  padding: 20px 60px;
  border-bottom: 1px solid #1a1a1a;
  background: #060606;
  display: flex;
  align-items: center;
  gap: 20px;
}

.walk-prompt-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #c1121f;
  text-transform: uppercase;
  opacity: 0.7;
  flex-shrink: 0;
}

.walk-prompt a {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
}

.walk-prompt a:hover {
  color: #c1121f;
}


/* =========================
   TABLET (max-width: 1024px)
========================= */
@media (max-width: 1024px) {

  .site-header { padding: 0 36px; }

  .hero {
    padding: 60px 40px;
    min-height: 560px;
  }

  .hero h1 { font-size: 80px; }

  .hero-text { font-size: 18px; }

  .pillars {
    padding: 50px 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio { padding: 60px 40px; }

  .portfolio h2 { font-size: 44px; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .about { padding: 60px 40px; }

  .about-inner2 h2 { font-size: 44px; }

  .stats div { padding: 50px 20px; }

  .stats h2 { font-size: 58px; }

  .availability-signal { padding: 50px 40px; }

  .walk-prompt { padding: 20px 40px; }

}


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

/* hidden until observer fires */
.reveal {
  opacity: 0;
}

/* animation-based so it doesn't conflict with existing card hover transitions */
.reveal.is-visible {
  animation: revealUp 0.45s ease both;
}

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


/* =========================
   MOBILE
========================= */
@media (max-width: 800px) {

  .site-header {
    padding: 0 24px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 60px 28px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-visual-bg {
    display: none;
  }

  .pillars,
  .portfolio-grid,
  .about,
  .stats {
    grid-template-columns: 1fr;
  }

  .manifesto-panel {
    max-width: 100%;
  }

  .manager-link {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

}


/* =========================
   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: 800px) {
  .nav-toggle { display: flex; }
}
