:root {
    --black: #0B0B0B;
    --red: #e03d2b;
    --jade: #36b39d;
    --fg: #F4F4F4;
    --fade: rgba(255,255,255,0.08);
  }
  
  * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    background: var(--black);
    color: var(--fg);
    font-family: "Helvetica Neue", Inter, Arial, sans-serif;
    overflow-x: hidden;
  }
  
  /* --- LINKS --- */
  a {
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.25s ease;
  }
  a:hover {
    opacity: 1;
    color: var(--jade);
  }
  
  /* --- CONTAINER --- */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* --- HEADER / SIDEBAR --- */
  .header-logo {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    z-index: 50;
  }
  .header-logo img {
    height: 30px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
  }
  .header-logo img:hover {
    transform: scale(1.05);
  }
  
  .sidebar {
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 50;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .sidebar a {
    display: block;
    margin: 10px 0;
    opacity: 0.6;
    font-weight: 600;
    transition: color 0.3s ease, opacity 0.3s ease;
  }
  .sidebar a.active {
    color: var(--jade);
    opacity: 1;
  }
  .sidebar a:hover {
    color: var(--red);
    opacity: 1;
  }
  
  /* --- TITLES --- */
  .section-title {
    text-align: center;
    margin: 140px 0 40px;
  }
  .huge {
    font-weight: 800;
    font-size: clamp(40px, 8vw, 92px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--red), var(--jade));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .caption {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
    opacity: 0.7;
    color: var(--jade);
  }
  
  /* --- GRID PROJECTS --- */
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  @media (min-width: 900px) {
    .grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4/3;
    background: #111;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  }
  .card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.03) brightness(0.9);
    transform: scale(1.01);
    transition: transform 0.4s ease, filter 0.4s ease;
  }
  .card:hover img {
    transform: scale(1.06);
    filter: contrast(1.15) brightness(1);
  }
  .card h3 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    font-size: clamp(18px, 2.3vw, 30px);
    text-transform: uppercase;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
    color: white;
    mix-blend-mode: lighten;
  }
  
  /* --- BUTTONS --- */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 14px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .button:hover {
    background: var(--jade);
    transform: translateY(-2px);
  }
  .button.alt {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .button.alt:hover {
    border-color: var(--jade);
    color: var(--jade);
  }
  
  /* --- FORM --- */
  .form label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    opacity: 0.75;
    margin-top: 16px;
  }
  .form input,
  .form textarea,
  .form select {
    width: 100%;
    margin-top: 8px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
  }
  .form textarea {
    min-height: 140px;
    resize: vertical;
  }
  
  /* --- HERO / VIDEO --- */
  .hero-video {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--black), #141414);
  }
  
  /* --- TEXTS --- */
  .prose {
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.92;
    font-size: 18px;
    line-height: 1.7;
  }
  .rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fade), transparent);
    margin: 28px 0;
  }
  
  /* --- FOOTER / NAV TOP --- */
  .top-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0.7;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    transition: all 0.25s ease;
  }
  .top-link:hover {
    opacity: 1;
    background: var(--jade);
    border-color: var(--jade);
    color: #fff;
  }
  
  /* --- PROJECT PAGE --- */
  .project-hero {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 21/9;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  }
  .badge {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 11px;
    opacity: 0.8;
    color: var(--jade);
  }

  /* ----- COMING SOON message ----- */
.coming-soon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  font-size: clamp(13px, 1.5vw, 17px);
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}

.coming-soon.visible {
  opacity: 1;
  transform: translateY(0);
}
.card { position: relative; }

/* Image protection */
img.protect {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none; /* iOS long-press save */
}
.protect-wrap {
  position: relative;
}
.protect-wrap::after {
  /* invisible overlay that catches right-clicks over the image area */
  content: "";
  position: absolute; inset: 0;
  background: transparent;
}
.site-footer {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 60px 0 20px;
}

  