    * {
      box-sizing: border-box;
    }

    body, html {
      margin: 0;
      padding: 0;
      font-family: "Inter", sans-serif;
      background-color: #0d0d0d;
      color: #f0f0f0;
      scroll-behavior: smooth;
    }

      /* NAVIGATION */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0,0,0,0.8);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      padding: 1rem 0;
      z-index: 1000;
    }

  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
    }

    nav a:hover {
      color: #ccc;
    }

header h1 {
  text-align: center;
  padding: 2rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
  }

  /* --- VIDEO --- */
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
  }

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

  /* --- EPISODE LINKS --- */
  .episodes {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .episodes a {
    color: #aaa;
    text-decoration: none;
    margin: 0 0.3rem;
    transition: color 0.3s;
  }

  .episodes a:hover {
    color: #fff;
  }

  /* --- PROJECT INFO SECTION --- */
  .project-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

.project-info img {
    max-width: 480px;
    width: 100%; 
    flex: 1; 
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.blurb {
  flex: 1 1 300px;
  font-size: 1.1rem; 
  line-height: 1.6;
  color: #ddd;
}

  .blurb .bld {
    font-weight: 600;
    color: #fff;
  }

  .blurb a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blurb a:hover {
    color: #fff;
  }

  /* responsive portfolio grid that can show 2-5 cols */
  #portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    padding: 3rem 1rem;
    width: 100%;
    max-width: 1800px; 
    margin: 0 auto;
  }

  /* cards */
  .column.Commercial {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  .column.Commercial:hover { transform: translateY(-4px); }

  .column.Commercial img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
  }
  .column.Commercial:hover img { transform: scale(1.05); }


  hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 3rem 0;
  }

  footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.8rem;
    color: #777;
  }

  @media (max-width: 600px) {
    .content-wrapper { padding: 1rem; } 
    .project-info { flex-direction: column; }
      
  nav {
    flex-wrap: nowrap; /* Forces links onto one line */
    justify-content: space-between; /* Use all available space */
    padding: 1rem 0.1rem; /* Ensure padding doesn't restrict space */
    width: 100%; /* Ensure nav container is full width */
  }

  nav a {

    margin: 0; 
    padding: 0 0.2rem;
    white-space: nowrap;
  }
      
      
  }