    :root {
      --bg: #09090b;
      --surface: #18181b;
      --surface-2: #27272a;
      --border: #3f3f46;
      --text: #fafafa;
      --text-muted: #a1a1aa;
      --text-dim: #71717a;
      --accent: #f97316;
      --accent-dim: rgba(249,115,22,0.15);
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: var(--font-sans);
      font-weight: 300;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.loading {
      overflow: hidden;
    }

    /* ============ LIGHT MODE ============ */
    html.light-mode {
      --bg: #f2f2f7;
      --surface: #ffffff;
      --surface-2: #e5e5ea;
      --border: #c7c7cc;
      --text: #1d1d1f;
      --text-muted: #424245;
      --text-dim: #86868b;
    }

    html.light-mode .preloader,
    html.light-mode .modal__backdrop,
    html.light-mode .lightbox {
      background: rgba(242, 242, 247, 0.98);
    }

    html.light-mode .hero__grid {
      background-image:
        linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
    }

    html.light-mode .section--dark {
      background: var(--surface-2);
    }

    html.light-mode .project-card__image,
    html.light-mode .team-member__image {
      filter: grayscale(20%);
    }

    html.light-mode #three-canvas {
      filter: invert(0.85) hue-rotate(180deg);
    }

    /* ============ CUSTOM CURSOR ============ */
    .cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 12px;
      height: 12px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      mix-blend-mode: difference;
      transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
    }
    html.light-mode .cursor {
      mix-blend-mode: normal;
      background: var(--accent);
    }

    .cursor--hidden {
      opacity: 0;
    }

    .cursor--hover {
      width: 50px;
      height: 50px;
      background: var(--accent);
      mix-blend-mode: normal;
    }

    .cursor--text {
      width: 80px;
      height: 80px;
      background: transparent;
      border: 1px solid var(--accent);
      mix-blend-mode: normal;
    }

    .cursor--text::after {
      content: 'VIEW';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      color: var(--accent);
    }

    .cursor-follower {
      position: fixed;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      border: 1px solid var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    }

    .cursor-follower--hidden {
      opacity: 0;
    }

    .cursor-follower--hover {
      width: 80px;
      height: 80px;
      opacity: 0.3;
    }

    @media (max-width: 1024px) {
      .cursor, .cursor-follower { display: none; }
    }

    /* Hide default cursor on desktop */
    @media (min-width: 1025px) {
      body {
        cursor: none;
      }
      a, button, input, textarea, select {
        cursor: none;
      }
    }

    /* ============ THEME TOGGLE ============ */
    .theme-toggle {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      z-index: 9100;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .theme-toggle__btn {
      width: 3.5rem;
      height: 3.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text);
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      pointer-events: all;
      position: relative;
      z-index: 10001;
    }

    .theme-toggle__btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-3px) rotate(15deg);
    }

    .theme-toggle__label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--text-dim);
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .theme-toggle:hover .theme-toggle__label {
      opacity: 1;
      transform: translateX(0);
    }

    /* ============ COOKIE BANNER ============ */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9000;
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    }

    .cookie-banner--visible {
      transform: translateY(0);
    }

    .cookie-banner--hidden {
      display: none;
    }

    .cookie-banner__content {
      flex: 1;
    }

    .cookie-banner__title {
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .cookie-banner__text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .cookie-banner__text a {
      color: var(--accent);
      text-decoration: none;
    }

    .cookie-banner__actions {
      display: flex;
      gap: 1rem;
      flex-shrink: 0;
    }

    .cookie-btn {
      padding: 0.875rem 1.75rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .cookie-btn--accept {
      background: var(--accent);
      color: var(--bg);
    }

    .cookie-btn--accept:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
    }

    .cookie-btn--settings {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    .cookie-btn--settings:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .cookie-btn--reject {
      background: transparent;
      color: var(--text-dim);
      padding: 0.875rem 1rem;
    }

    .cookie-btn--reject:hover {
      color: var(--text);
    }

    /* Cookie Settings Modal */
    .cookie-settings {
      position: fixed;
      inset: 0;
      z-index: 9500;
      background: rgba(9, 9, 11, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .cookie-settings--visible {
      opacity: 1;
      visibility: visible;
    }

    .cookie-settings__modal {
      background: var(--surface);
      border: 1px solid var(--border);
      width: 90%;
      max-width: 500px;
      max-height: 80vh;
      overflow-y: auto;
      padding: 2rem;
    }

    .cookie-settings__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .cookie-settings__title {
      font-size: 1.25rem;
      font-weight: 400;
    }

    .cookie-settings__close {
      width: 2.5rem;
      height: 2.5rem;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cookie-settings__close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .cookie-category {
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border);
    }

    .cookie-category:last-of-type {
      border-bottom: none;
    }

    .cookie-category__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .cookie-category__name {
      font-size: 0.95rem;
      font-weight: 400;
    }

    .cookie-category__toggle {
      position: relative;
      width: 44px;
      height: 24px;
      background: var(--border);
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .cookie-category__toggle--active {
      background: var(--accent);
    }

    .cookie-category__toggle--disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .cookie-category__toggle::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      transition: transform 0.3s;
    }

    .cookie-category__toggle--active::after {
      transform: translateX(20px);
    }

    .cookie-category__desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .cookie-settings__actions {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .cookie-settings__actions .cookie-btn {
      flex: 1;
    }

    @media (max-width: 768px) {
      .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
      }
      .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
      }
      .cookie-btn {
        width: 100%;
      }
      .theme-toggle {
        bottom: auto;
        top: 5rem;
        left: 1rem;
      }
    }

    /* ============ PAGE TRANSITIONS ============ */
    .page-transition {
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
    }

    .page-transition__layer {
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: scaleY(0);
      transform-origin: bottom;
    }

    .page-transition__layer:nth-child(2) {
      background: var(--surface);
      transition-delay: 0.1s;
    }

    .page-transition__layer:nth-child(3) {
      background: var(--bg);
      transition-delay: 0.2s;
    }

    .page-transition--active .page-transition__layer {
      animation: pageTransitionIn 0.6s cubic-bezier(0.76, 0, 0.24, 1) forwards;
    }

    .page-transition--exit .page-transition__layer {
      transform: scaleY(1);
      transform-origin: top;
      animation: pageTransitionOut 0.6s cubic-bezier(0.76, 0, 0.24, 1) forwards;
    }

    @keyframes pageTransitionIn {
      0% { transform: scaleY(0); transform-origin: bottom; }
      50% { transform: scaleY(1); transform-origin: bottom; }
      50.1% { transform-origin: top; }
      100% { transform: scaleY(0); transform-origin: top; }
    }

    @keyframes pageTransitionOut {
      0% { transform: scaleY(1); }
      100% { transform: scaleY(0); }
    }

    /* Section Reveal Animation */
    .reveal-section {
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-section--visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============ NEWSLETTER POPUP ============ */
    .newsletter-popup {
      position: fixed;
      inset: 0;
      z-index: 8000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }

    .newsletter-popup--visible {
      opacity: 1;
      visibility: visible;
    }

    .newsletter-popup__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9, 9, 11, 0.9);
      backdrop-filter: blur(10px);
    }

    .newsletter-popup__modal {
      position: relative;
      width: 90%;
      max-width: 900px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .newsletter-popup--visible .newsletter-popup__modal {
      transform: scale(1) translateY(0);
    }

    .newsletter-popup__image {
      position: relative;
      background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80') center/cover;
      min-height: 400px;
    }

    .newsletter-popup__image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(249, 115, 22, 0.8) 0%, rgba(9, 9, 11, 0.9) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      text-align: center;
    }

    .newsletter-popup__badge {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.7);
      margin-bottom: 1rem;
    }

    .newsletter-popup__highlight {
      font-size: 3rem;
      font-weight: 200;
      color: white;
      line-height: 1.1;
    }

    .newsletter-popup__content {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .newsletter-popup__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2.5rem;
      height: 2.5rem;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      z-index: 10;
    }

    .newsletter-popup__close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .newsletter-popup__title {
      font-size: 1.75rem;
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .newsletter-popup__text {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .newsletter-popup__form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .newsletter-popup__input-group {
      display: flex;
      gap: 0.75rem;
    }

    .newsletter-popup__input {
      flex: 1;
      padding: 1rem 1.25rem;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-sans);
      font-size: 0.9rem;
      transition: border-color 0.3s;
    }

    .newsletter-popup__input:focus {
      outline: none;
      border-color: var(--accent);
    }

    .newsletter-popup__submit {
      padding: 1rem 2rem;
      background: var(--accent);
      border: none;
      color: var(--bg);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      white-space: nowrap;
    }

    .newsletter-popup__submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    }

    .newsletter-popup__privacy {
      font-size: 0.75rem;
      color: var(--text-dim);
      line-height: 1.6;
    }

    .newsletter-popup__privacy a {
      color: var(--accent);
      text-decoration: none;
    }

    .newsletter-popup__benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .newsletter-popup__benefit {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .newsletter-popup__benefit-icon {
      color: var(--accent);
    }

    .newsletter-popup__success {
      text-align: center;
      padding: 2rem;
    }

    .newsletter-popup__success-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    .newsletter-popup__success-title {
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .newsletter-popup__success-text {
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .newsletter-popup__modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
      }
      .newsletter-popup__image {
        min-height: 200px;
      }
      .newsletter-popup__input-group {
        flex-direction: column;
      }
    }

    /* ============ PROJECT TIMELINE ============ */
    .timeline-section {
      position: relative;
      padding: 10rem 2rem;
      background: var(--bg);
      overflow: hidden;
    }

    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .timeline__line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--border);
      transform: translateX(-50%);
    }

    .timeline__line-progress {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: var(--accent);
      transition: height 0.1s linear;
    }

    .timeline__item {
      position: relative;
      width: 50%;
      padding: 2rem;
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .timeline__item--visible {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline__item:nth-child(odd) {
      left: 0;
      padding-right: 4rem;
      text-align: right;
    }

    .timeline__item:nth-child(even) {
      left: 50%;
      padding-left: 4rem;
      text-align: left;
    }

    .timeline__marker {
      position: absolute;
      top: 2.5rem;
      width: 20px;
      height: 20px;
      background: var(--bg);
      border: 3px solid var(--border);
      border-radius: 50%;
      z-index: 10;
      transition: all 0.3s;
    }

    .timeline__item:nth-child(odd) .timeline__marker {
      right: -10px;
    }

    .timeline__item:nth-child(even) .timeline__marker {
      left: -10px;
    }

    .timeline__item--visible .timeline__marker {
      border-color: var(--accent);
      background: var(--accent);
      box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    }

    .timeline__year {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .timeline__title {
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .timeline__location {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-dim);
      margin-bottom: 1rem;
    }

    .timeline__description {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .timeline__image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-top: 1rem;
      filter: grayscale(30%);
      transition: filter 0.5s, transform 0.5s;
    }

    .timeline__item:hover .timeline__image {
      filter: grayscale(0%);
      transform: scale(1.02);
    }

    .timeline__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: flex-end;
    }

    .timeline__item:nth-child(even) .timeline__tags {
      justify-content: flex-start;
    }

    .timeline__tag {
      padding: 0.25rem 0.75rem;
      background: var(--surface);
      border: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      color: var(--text-dim);
    }

    .timeline__cta {
      text-align: center;
      margin-top: 4rem;
    }

    .timeline__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2.5rem;
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-decoration: none;
      transition: all 0.3s;
    }

    .timeline__cta-btn:hover {
      background: var(--accent);
      color: var(--bg);
    }

    @media (max-width: 768px) {
      .timeline__line {
        left: 20px;
      }
      .timeline__item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
      }
      .timeline__marker {
        left: 10px !important;
        right: auto !important;
      }
      .timeline__tags {
        justify-content: flex-start !important;
      }
    }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent); }

    /* ============ PRELOADER ============ */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    .preloader--hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader__logo {
      width: 80px;
      height: 80px;
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 1.5rem;
      margin-bottom: 2rem;
      position: relative;
      animation: logoReveal 1.5s ease forwards;
    }

    .preloader__logo::before {
      content: '';
      position: absolute;
      inset: -2px;
      border: 2px solid var(--accent);
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
      animation: borderDraw 2s ease forwards;
    }

    @keyframes logoReveal {
      0% { transform: scale(0.8); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    @keyframes borderDraw {
      0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
      25% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
      50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%); }
      75% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
      100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    }

    .preloader__text {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      color: var(--text-dim);
      margin-bottom: 1.5rem;
    }

    .preloader__bar {
      width: 200px;
      height: 2px;
      background: var(--border);
      border-radius: 1px;
      overflow: hidden;
    }

    .preloader__progress {
      width: 0%;
      height: 100%;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .preloader__percent {
      margin-top: 1rem;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--accent);
    }

    /* ============ PRINT ELEMENTS ============ */
    .print-header, .print-footer {
      display: none;
    }

    .print-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 100;
      width: 3.5rem;
      height: 3.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text);
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .print-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-3px);
    }

    .print-btn__tooltip {
      position: absolute;
      right: 100%;
      margin-right: 1rem;
      padding: 0.5rem 1rem;
      background: var(--surface);
      border: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .print-btn:hover .print-btn__tooltip {
      opacity: 1;
      visibility: visible;
    }

    /* ============ LAZY LOADING ============ */
    .lazy-image {
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .lazy-image--loaded {
      opacity: 1;
    }

    .lazy-image__placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        var(--surface) 0%,
        var(--surface-2) 50%,
        var(--surface) 100%
      );
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .image-container {
      position: relative;
      overflow: hidden;
    }

    .image-container--loaded .lazy-image__placeholder {
      opacity: 0;
      visibility: hidden;
    }

    /* ============ NAVIGATION ============ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(9,9,11,0.6);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
    }
    html.light-mode .nav {
      background: rgba(242,242,247,0.85);
      border-bottom-color: var(--border);
    }

    .nav--scrolled {
      background: rgba(9,9,11,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    html.light-mode .nav--scrolled {
      background: rgba(242,242,247,0.95);
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      color: inherit;
    }

    .nav__logo-mark {
      width: 2.5rem; height: 2.5rem;
      border: 1px solid currentColor;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      transition: background 0.3s, color 0.3s;
    }

    .nav__logo:hover .nav__logo-mark {
      background: var(--text);
      color: var(--bg);
    }

    .nav__logo-text {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
    }
    html.light-mode .nav__logo-text {
      color: var(--text);
    }

    .nav__links {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    .nav__link {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(255,255,255,0.75);
      position: relative;
      padding: 0.5rem 0;
      transition: color 0.3s;
    }
    html.light-mode .nav__link {
      color: var(--text-muted);
    }

    .nav__link:hover, .nav__link--active { color: var(--text); }

    .nav__link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .nav__link:hover::after, .nav__link--active::after { width: 100%; }

    .nav__menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .nav__menu-btn span {
      width: 24px; height: 1px;
      background: var(--text);
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    #three-canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero__grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 2;
    }

    .hero__content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 2rem;
    }

    .hero__label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      color: var(--text-dim);
      margin-bottom: 1.5rem;
    }

    .hero__title {
      font-size: clamp(2.5rem, 8vw, 6rem);
      font-weight: 200;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 2rem;
    }

    .hero__title span {
      display: block;
      color: var(--accent);
    }

    .hero__desc {
      max-width: 32rem;
      margin: 0 auto;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.9;
    }

    .hero__scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      z-index: 10;
    }

    .hero__scroll-line {
      width: 1px; height: 4rem;
      background: linear-gradient(to bottom, transparent, var(--text-dim));
      animation: scrollPulse 2s infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    .hero__scroll-text {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      color: var(--text-dim);
    }

    .hero__meta {
      position: absolute;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      color: var(--surface-2);
      z-index: 10;
    }

    .hero__meta--left { top: 6rem; left: 2rem; }
    .hero__meta--right { bottom: 6rem; right: 2rem; text-align: right; }

    /* ============ SECTIONS ============ */
    .section {
      padding: 10rem 2rem;
      position: relative;
    }

    .section--dark { background: var(--surface); }
    .section--bordered { border-top: 1px solid var(--border); }

    .container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .section__header {
      margin-bottom: 5rem;
    }

    .section__label {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .section__label-line {
      width: 3rem; height: 1px;
      background: var(--accent);
    }

    .section__label-text {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      color: var(--text-dim);
    }

    .section__title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 200;
      letter-spacing: -0.02em;
    }

    .section__subtitle {
      margin-top: 1.5rem;
      max-width: 40rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* ============ PROJECTS GRID ============ */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem 3rem;
    }

    .project-card {
      position: relative;
      cursor: pointer;
      opacity: 1;
      transform: translateY(0);
      transition: box-shadow 0.3s ease;
    }
    .project-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .project-card__frame {
      position: absolute;
      inset: -1rem;
      border: 1px solid var(--border);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .project-card:hover .project-card__frame { opacity: 1; }

    .project-card__number {
      position: absolute;
      top: -1.75rem; left: 1rem;
      padding: 0 0.5rem;
      background: var(--bg);
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: var(--text-dim);
    }

    .section--dark .project-card__number { background: var(--surface); }

    .project-card__image-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--surface);
    }

    .project-card__image {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: grayscale(40%) brightness(0.9);
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    }

    .project-card:hover .project-card__image {
      transform: scale(1.08);
      filter: grayscale(0%) brightness(1);
    }

    .project-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(9,9,11,0.8) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .project-card:hover .project-card__overlay { opacity: 1; }

    .project-card__corners {
      position: absolute;
      inset: 0.75rem;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .project-card:hover .project-card__corners { opacity: 1; }

    .project-card__corner {
      position: absolute;
      width: 1.25rem; height: 1.25rem;
      border-color: var(--accent);
      border-style: solid;
      border-width: 0;
    }

    .project-card__corner--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
    .project-card__corner--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
    .project-card__corner--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
    .project-card__corner--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

    .project-card__view {
      position: absolute;
      bottom: 1.5rem; left: 1.5rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: var(--accent);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .project-card:hover .project-card__view {
      opacity: 1;
      transform: translateY(0);
    }

    .project-card__dossier-btn {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      width: 2.5rem;
      height: 2.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text);
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .project-card:hover .project-card__dossier-btn {
      opacity: 1;
      transform: translateY(0);
    }

    .project-card__dossier-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(0) scale(1.1);
    }

    .project-card__info { margin-top: 1.5rem; }

    .project-card__header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.5rem;
    }

    .project-card__title {
      font-size: 1.25rem;
      font-weight: 300;
      letter-spacing: 0.01em;
    }

    .project-card__year {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--accent);
    }

    .project-card__meta {
      display: flex;
      gap: 2.5rem;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-dim);
    }

    .project-card__divider {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .project-card__divider-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .project-card__divider-dot {
      width: 5px; height: 5px;
      background: var(--accent);
    }

    /* ============ PROJECT DETAIL MODAL ============ */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }

    .modal--active {
      opacity: 1;
      visibility: visible;
    }

    .modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9,9,11,0.95);
      backdrop-filter: blur(20px);
    }

    .modal__container {
      position: relative;
      width: 90%;
      max-width: 1200px;
      max-height: 90vh;
      overflow-y: auto;
      background: var(--surface);
      border: 1px solid var(--border);
    }

    .modal__close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      width: 3rem; height: 3rem;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: background 0.3s, border-color 0.3s;
      z-index: 10;
    }

    .modal__close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .modal__hero {
      position: relative;
      height: 50vh;
      overflow: hidden;
    }

    .modal__hero-image {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .modal__hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--surface) 0%, transparent 60%);
    }

    .modal__content {
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .modal__title {
      font-size: 2.5rem;
      font-weight: 200;
      margin-bottom: 1rem;
    }

    .modal__subtitle {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--accent);
      letter-spacing: 0.2em;
      margin-bottom: 2rem;
    }

    .modal__description {
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 2rem;
    }

    .modal__specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .modal__spec {
      padding: 1.25rem;
      background: var(--bg);
      border: 1px solid var(--border);
    }

    .modal__spec-label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: var(--text-dim);
      margin-bottom: 0.5rem;
    }

    .modal__spec-value {
      font-size: 1.125rem;
      font-weight: 300;
    }

    .modal__gallery {
      display: grid;
      gap: 1rem;
    }

    .modal__gallery-item {
      aspect-ratio: 16/10;
      overflow: hidden;
      position: relative;
    }

    .modal__gallery-image {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }

    .modal__gallery-item:hover .modal__gallery-image {
      transform: scale(1.05);
    }

    /* ============ TEAM SECTION ============ */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .team-member {
      position: relative;
      opacity: 1;
      transform: translateY(0);
      transition: transform 0.3s ease;
    }
    .team-member.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .team-member__image-wrap {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: var(--surface);
      margin-bottom: 1.5rem;
    }

    .team-member__image {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
      transition: filter 0.5s, transform 0.6s;
    }

    .team-member:hover .team-member__image {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .team-member__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .team-member:hover .team-member__overlay { opacity: 1; }

    .team-member__contact {
      position: absolute;
      bottom: 1rem; left: 1rem; right: 1rem;
      display: flex;
      gap: 0.75rem;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
    }

    .team-member:hover .team-member__contact {
      opacity: 1;
      transform: translateY(0);
    }

    .team-member__contact-link {
      width: 2.5rem; height: 2.5rem;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--bg);
      font-size: 0.8rem;
      transition: transform 0.2s;
    }

    .team-member__contact-link:hover { transform: scale(1.1); }

    .team-member__name {
      font-size: 1.125rem;
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    .team-member__role {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-dim);
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
    }

    .team-member__bio {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ============ SERVICES ============ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .service-card {
      padding: 2.5rem;
      background: var(--bg);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      opacity: 1;
      transform: translateY(0);
      transition: border-color 0.4s;
    }
    .service-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
    }

    .service-card__number {
      font-family: var(--font-mono);
      font-size: 3rem;
      font-weight: 200;
      color: var(--surface-2);
      margin-bottom: 1.5rem;
    }

    .service-card__title {
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 1rem;
    }

    .service-card__desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .service-card__list {
      list-style: none;
    }

    .service-card__list-item {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-dim);
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .service-card__list-item::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
    }

    .service-card__accent {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .service-card:hover .service-card__accent { transform: scaleX(1); }

    /* ============ CONTACT SECTION ============ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 6rem;
    }

    .contact-info__title {
      font-size: 1.75rem;
      font-weight: 200;
      margin-bottom: 2rem;
    }

    .contact-info__item {
      margin-bottom: 2rem;
    }

    .contact-info__label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: var(--text-dim);
      margin-bottom: 0.5rem;
    }

    .contact-info__value {
      font-size: 1rem;
      line-height: 1.8;
    }

    .contact-info__value a {
      color: var(--accent);
      text-decoration: none;
      transition: opacity 0.3s;
    }

    .contact-info__value a:hover { opacity: 0.7; }

    .contact-info__social {
      display: flex;
      gap: 1rem;
      margin-top: 3rem;
    }

    .contact-info__social-link {
      width: 3rem; height: 3rem;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      transition: background 0.3s, border-color 0.3s;
    }

    .contact-info__social-link:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .contact-form {
      display: grid;
      gap: 2rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .form-group {
      position: relative;
    }

    .form-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--text-dim);
      margin-bottom: 0.75rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
      width: 100%;
      padding: 1rem 1.25rem;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-sans);
      font-size: 0.95rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-dim);
    }

    .form-textarea {
      min-height: 150px;
      resize: vertical;
    }

    .form-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2371717a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
    }

    .form-checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .form-checkbox {
      width: 1.25rem; height: 1.25rem;
      margin-top: 0.1rem;
      accent-color: var(--accent);
    }

    .form-checkbox-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .form-checkbox-label a {
      color: var(--accent);
      text-decoration: none;
    }

    .form-submit {
      justify-self: start;
      padding: 1.25rem 3rem;
      background: var(--accent);
      border: none;
      color: var(--bg);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .form-submit:hover { transform: translateY(-2px); }

    .form-submit::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }

    .form-submit:hover::after { left: 100%; }

    /* ============ FOOTER ============ */
    .footer {
      padding: 4rem 2rem;
      border-top: 1px solid var(--border);
    }

    .footer__inner {
      max-width: 80rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
    }

    .footer__brand {
      font-size: 1.25rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer__tagline {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-dim);
      line-height: 1.8;
    }

    .footer__title {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: var(--text-dim);
      margin-bottom: 1.5rem;
    }

    .footer__links {
      list-style: none;
    }

    .footer__link {
      margin-bottom: 0.75rem;
    }

    .footer__link a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }

    .footer__link a:hover { color: var(--accent); }

    .footer__bottom {
      max-width: 80rem;
      margin: 4rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--text-dim);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1024px) {
      .projects-grid { grid-template-columns: 1fr; gap: 3rem; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
      .modal__content { grid-template-columns: 1fr; }
      .footer__inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav__links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
      }
      .nav__links--open {
        display: flex;
      }
      .nav__links--open .nav__link {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
      }
      .nav__menu-btn { display: flex; z-index: 1000; }
      .nav__menu-btn--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
      .nav__menu-btn--open span:nth-child(2) { opacity: 0; }
      .nav__menu-btn--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
      .team-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    }

    /* ============ CENTER LINE ============ */
    .center-line {
      position: fixed;
      top: 0; left: 50%;
      width: 1px; height: 100vh;
      background: var(--border);
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 0;
      opacity: 0.2;
    }

    @media (max-width: 768px) { .center-line { display: none; } }

    /* ============ LIGHTBOX ============ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: rgba(9, 9, 11, 0.98);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }

    .lightbox--active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox__container {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox__image {
      max-width: 100%;
      max-height: 85vh;
      object-fit: contain;
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.4s, transform 0.4s;
    }

    .lightbox--active .lightbox__image {
      opacity: 1;
      transform: scale(1);
    }

    .lightbox__close {
      position: absolute;
      top: -3rem;
      right: 0;
      width: 3rem;
      height: 3rem;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s;
    }

    .lightbox__close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .lightbox__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 3.5rem;
      height: 3.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.25rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }

    .lightbox__nav:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-50%) scale(1.05);
    }

    .lightbox__nav--prev {
      left: -5rem;
    }

    .lightbox__nav--next {
      right: -5rem;
    }

    .lightbox__counter {
      position: absolute;
      bottom: -2.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--text-dim);
      letter-spacing: 0.2em;
    }

    .lightbox__caption {
      position: absolute;
      bottom: -2.5rem;
      left: 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .lightbox__thumbnails {
      position: absolute;
      bottom: -5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
    }

    .lightbox__thumbnail {
      width: 4rem;
      height: 3rem;
      object-fit: cover;
      cursor: pointer;
      opacity: 0.4;
      border: 2px solid transparent;
      transition: opacity 0.3s, border-color 0.3s;
    }

    .lightbox__thumbnail:hover,
    .lightbox__thumbnail--active {
      opacity: 1;
    }

    .lightbox__thumbnail--active {
      border-color: var(--accent);
    }

    @media (max-width: 768px) {
      .lightbox__nav--prev { left: 1rem; }
      .lightbox__nav--next { right: 1rem; }
      .lightbox__thumbnails { display: none; }
    }

    /* ============ PROJECT FILTER ============ */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .filter-bar__group {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .filter-bar__label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--text-dim);
      text-transform: uppercase;
    }

    .filter-bar__buttons {
      display: flex;
      gap: 0.5rem;
    }

    .filter-btn {
      padding: 0.6rem 1.25rem;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .filter-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--accent);
      transform: translateX(-100%);
      transition: transform 0.3s;
      z-index: -1;
    }

    .filter-btn:hover {
      border-color: var(--accent);
      color: var(--text);
    }

    .filter-btn--active {
      border-color: var(--accent);
      background: var(--accent);
      color: var(--bg);
    }

    .filter-btn--active::before {
      transform: translateX(0);
    }

    .filter-bar__search {
      margin-left: auto;
      position: relative;
    }

    .filter-bar__search-input {
      padding: 0.6rem 1rem 0.6rem 2.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      width: 220px;
      transition: border-color 0.3s, width 0.3s;
    }

    .filter-bar__search-input:focus {
      outline: none;
      border-color: var(--accent);
      width: 280px;
    }

    .filter-bar__search-input::placeholder {
      color: var(--text-dim);
    }

    .filter-bar__search-icon {
      position: absolute;
      left: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      font-size: 0.9rem;
      pointer-events: none;
    }

    .filter-results {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-dim);
      margin-bottom: 2rem;
    }

    .filter-results span {
      color: var(--accent);
    }

    /* Project card filtered states */
    .project-card--hidden {
      display: none;
    }

    .project-card--filtered {
      animation: fadeInUp 0.5s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ============ DOSSIER MODAL ============ */
    .dossier-modal {
      position: fixed;
      inset: 0;
      z-index: 2500;
      background: rgba(9, 9, 11, 0.98);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }

    .dossier-modal--active {
      opacity: 1;
      visibility: visible;
    }

    .dossier {
      width: 210mm;
      max-height: 90vh;
      overflow-y: auto;
      background: white;
      color: #1a1a1a;
      position: relative;
    }

    .dossier__close {
      position: fixed;
      top: 2rem;
      right: 2rem;
      width: 3rem;
      height: 3rem;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .dossier__close:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .dossier__actions {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      z-index: 10;
    }

    .dossier__action-btn {
      padding: 1rem 2rem;
      background: var(--accent);
      border: none;
      color: white;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .dossier__action-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    }

    .dossier__action-btn--secondary {
      background: var(--surface);
      border: 1px solid var(--border);
    }

    .dossier__page {
      padding: 15mm;
      min-height: 297mm;
      position: relative;
    }

    .dossier__page--cover {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .dossier__cover-logo {
      width: 100px;
      height: 100px;
      border: 2px solid #f97316;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 2rem;
      margin-bottom: 3rem;
    }

    .dossier__cover-title {
      font-size: 3rem;
      font-weight: 200;
      margin-bottom: 1rem;
    }

    .dossier__cover-subtitle {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      color: #f97316;
      margin-bottom: 3rem;
    }

    .dossier__cover-meta {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: #888;
    }

    .dossier__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-bottom: 1rem;
      border-bottom: 2px solid #f97316;
      margin-bottom: 2rem;
    }

    .dossier__header-logo {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .dossier__header-info {
      text-align: right;
      font-size: 0.75rem;
      color: #666;
    }

    .dossier__hero-image {
      width: 100%;
      height: 120mm;
      object-fit: cover;
      margin-bottom: 2rem;
    }

    .dossier__project-title {
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .dossier__project-location {
      font-family: var(--font-mono);
      font-size: 0.85rem;
      color: #f97316;
      margin-bottom: 2rem;
    }

    .dossier__section {
      margin-bottom: 2rem;
    }

    .dossier__section-title {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      color: #888;
      margin-bottom: 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #eee;
    }

    .dossier__description {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #333;
    }

    .dossier__specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .dossier__spec {
      padding: 1rem;
      background: #f8f8f8;
      border-left: 3px solid #f97316;
    }

    .dossier__spec-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: #888;
      margin-bottom: 0.25rem;
    }

    .dossier__spec-value {
      font-size: 1rem;
      font-weight: 400;
    }

    .dossier__gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }

    .dossier__gallery-image {
      width: 100%;
      height: 60mm;
      object-fit: cover;
    }

    .dossier__footer {
      position: absolute;
      bottom: 10mm;
      left: 15mm;
      right: 15mm;
      display: flex;
      justify-content: space-between;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: #aaa;
      padding-top: 1rem;
      border-top: 1px solid #eee;
    }

    .dossier__contact {
      margin-top: 3rem;
      padding: 1.5rem;
      background: #f8f8f8;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .dossier__contact-item {
      text-align: center;
    }

    .dossier__contact-label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: #888;
      margin-bottom: 0.25rem;
    }

    .dossier__contact-value {
      font-size: 0.85rem;
    }

    @media (max-width: 768px) {
      .dossier {
        width: 100%;
        max-height: 100vh;
      }
      .dossier__page {
        padding: 5mm;
        min-height: auto;
      }
      .dossier__actions {
        flex-direction: column;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
      }
    }

    /* ============ MAP SECTION ============ */
    .map-container {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 0;
      border: 1px solid var(--border);
      height: 600px;
      margin-bottom: 4rem;
    }

    .map {
      position: relative;
      background: var(--surface);
      overflow: hidden;
      height: 600px;
    }

    .map__canvas {
      width: 100%;
      height: 100%;
    }

    .map-sidebar {
      background: var(--surface);
      border-left: 1px solid var(--border);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      overflow-y: auto;
    }

    .map-sidebar__header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .map-sidebar__logo {
      width: 3rem;
      height: 3rem;
      background: var(--accent);
      color: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .map-sidebar__title {
      font-size: 1.1rem;
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    .map-sidebar__subtitle {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-dim);
    }

    .map-sidebar__info {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .map-sidebar__item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .map-sidebar__icon {
      width: 2rem;
      height: 2rem;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    .map-sidebar__label {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: var(--text-dim);
      margin-bottom: 0.25rem;
    }

    .map-sidebar__value {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .map-sidebar__value a {
      color: var(--accent);
      text-decoration: none;
    }

    .map-sidebar__value a:hover {
      text-decoration: underline;
    }

    .map-sidebar__directions {
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }

    .map-sidebar__routes {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 0.75rem;
    }

    .map-sidebar__route {
      display: flex;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .map-sidebar__route-icon {
      flex-shrink: 0;
    }

    .map-sidebar__button {
      margin-top: auto;
      padding: 1rem 1.5rem;
      background: var(--accent);
      color: var(--bg);
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .map-sidebar__button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    }

    /* Map Marker */
    .map-marker {
      position: absolute;
      transform: translate(-50%, -100%);
      cursor: pointer;
      z-index: 10;
    }

    .map-marker__pin {
      width: 40px;
      height: 50px;
      position: relative;
    }

    .map-marker__pin::before {
      content: 'SA';
      position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      background: var(--accent);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    }

    .map-marker__pin::after {
      content: 'SA';
      position: absolute;
      top: 8px;
      left: 8px;
      width: 24px;
      height: 24px;
      background: var(--bg);
      border-radius: 50%;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-marker__pulse {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 20px;
      background: var(--accent);
      border-radius: 50%;
      opacity: 0.3;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: translateX(-50%) scale(1); opacity: 0.3; }
      100% { transform: translateX(-50%) scale(3); opacity: 0; }
    }

    /* Project Markers */
    .map-marker--project .map-marker__pin::before {
      background: var(--text-dim);
      width: 24px;
      height: 24px;
      content: '';
    }

    .map-marker--project .map-marker__pin::after {
      display: none;
    }

    .map-marker--project .map-marker__pin {
      width: 24px;
      height: 30px;
    }

    /* Map Projects Grid */
    .map-projects__title {
      font-size: 1.25rem;
      font-weight: 300;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .map-projects__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .map-project-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 1.5rem;
      transition: border-color 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .map-project-card:hover {
      border-color: var(--accent);
      transform: translateY(-3px);
    }

    .map-project-card__status {
      display: inline-block;
      padding: 0.25rem 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
    }

    .map-project-card__status--completed {
      background: rgba(34, 197, 94, 0.15);
      color: #22c55e;
    }

    .map-project-card__status--ongoing {
      background: var(--accent-dim);
      color: var(--accent);
    }

    .map-project-card__status--planning {
      background: rgba(59, 130, 246, 0.15);
      color: #3b82f6;
    }

    .map-project-card__name {
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .map-project-card__location {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-dim);
      margin-bottom: 0.75rem;
    }

    .map-project-card__meta {
      display: flex;
      gap: 1rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--text-muted);
    }

    @media (max-width: 1024px) {
      .map-container {
        grid-template-columns: 1fr;
        height: auto;
      }
      .map {
        height: 400px;
      }
      .map-sidebar {
        border-left: none;
        border-top: 1px solid var(--border);
      }
      .map-projects__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .map-projects__grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============ INSTAGRAM FEED ============ */
    .instagram-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-top: 2.5rem;
    }

    @media (min-width: 1100px) {
      .instagram-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      }
    }

    .instagram-item {
      display: block;
      text-decoration: none;
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
    }

    .instagram-item__inner {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .instagram-item__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .instagram-item:hover .instagram-item__img {
      transform: scale(1.05);
    }

    .instagram-item__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1rem;
    }

    .instagram-item:hover .instagram-item__overlay {
      opacity: 1;
    }

    .instagram-item__caption {
      color: #fff;
      font-size: 0.75rem;
      line-height: 1.4;
      margin: 0;
    }

    .instagram-item__icon {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.4);
      padding: 2px 6px;
    }

    .instagram-item__type {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.5rem;
      color: rgba(255,255,255,0.9);
    }

    /* Fallback Placeholder */
    .instagram-placeholder {
      grid-column: 1 / -1;
    }

    .instagram-profile-link {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 2rem;
      border: 1px solid var(--border);
      background: var(--surface);
      text-decoration: none;
      color: var(--text);
      transition: border-color 0.2s;
    }

    .instagram-profile-link:hover {
      border-color: var(--accent);
    }

    .instagram-profile-link__icon {
      width: 60px;
      height: 60px;
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.9rem;
      color: var(--accent);
      flex-shrink: 0;
    }

    .instagram-profile-link__arrow {
      margin-left: auto;
      font-size: 1.5rem;
      color: var(--accent);
    }

    .instagram-profile-link strong {
      display: block;
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    .instagram-profile-link p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Follow-Button */
    .ig-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 2rem;
      border: 1px solid var(--accent);
      background: transparent;
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .ig-follow-btn:hover {
      background: var(--accent);
      color: #fff;
    }

    .ig-follow-btn__icon {
      font-family: var(--font-mono);
      font-weight: 500;
    }

    @media (max-width: 640px) {
      .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============ TEAM MODAL ============ */
    .team-modal {
      position: fixed;
      inset: 0;
      z-index: 5000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .team-modal--active {
      opacity: 1;
      pointer-events: all;
    }

    .team-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9,9,11,0.85);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .team-modal__panel {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      max-width: 860px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      transform: translateY(30px);
      transition: transform 0.35s ease;
    }

    .team-modal--active .team-modal__panel {
      transform: translateY(0);
    }

    .team-modal__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
      width: 36px;
      height: 36px;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }

    .team-modal__close:hover {
      border-color: var(--accent);
      background: var(--accent-dim);
    }

    /* Photo column */
    .team-modal__photo-col {
      background: var(--surface-2);
      display: flex;
      flex-direction: column;
    }

    .team-modal__photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .team-modal__social {
      display: flex;
      gap: 0.5rem;
      padding: 1rem;
    }

    .team-modal__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .team-modal__social-link:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* Info column */
    .team-modal__info-col {
      padding: 2.5rem 2rem 2rem;
    }

    .team-modal__label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: var(--accent);
      text-transform: uppercase;
      display: block;
      margin-bottom: 0.5rem;
    }

    .team-modal__name {
      font-size: 1.8rem;
      font-weight: 200;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
      padding-right: 2.5rem;
    }

    .team-modal__bio {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1.75rem;
    }

    .team-modal__details {
      border-top: 1px solid var(--border);
      padding-top: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .team-modal__row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 0.5rem;
      font-size: 0.85rem;
    }

    .team-modal__row-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--text-dim);
      text-transform: uppercase;
      align-self: start;
      padding-top: 2px;
    }

    .team-modal__row-value {
      color: var(--text-muted);
    }

    /* Click-Indikator auf Team-Karten */
    .team-member:hover .team-member__contact-link--view {
      display: flex;
    }
    .team-member__contact-link--view {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: #fff;
      font-size: 1rem;
    }

    @media (max-width: 640px) {
      .team-modal__panel {
        grid-template-columns: 1fr;
        max-height: 95vh;
      }
      .team-modal__photo {
        aspect-ratio: 4/3;
      }
    }

    /* ============ PROJEKTSUCHE ============ */
    .search-highlight {
      background: var(--accent);
      color: #fff;
      padding: 0 2px;
    }

    .search-no-results {
      text-align: center;
      color: var(--text-muted);
      font-family: var(--font-mono);
      font-size: 0.85rem;
      padding: 3rem 0;
      letter-spacing: 0.1em;
    }

    /* Verbesserte Suchleiste */
    .filter-bar__search-input:focus {
      outline: none;
      border-color: var(--accent);
      background: var(--surface);
    }

    html.light-mode .team-modal__backdrop {
      background: rgba(242,242,247,0.85);
    }

    /* ── Projekt-Modal Navigation ── */
    .modal__nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 2rem;
      border-top: 1px solid var(--border);
      background: var(--surface);
      gap: 1rem;
    }

    .modal__nav-btn {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: none;
      border: 1px solid var(--border);
      color: var(--text-muted);
      cursor: pointer;
      padding: 0.6rem 1.2rem;
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .modal__nav-btn:hover:not(:disabled) {
      border-color: var(--accent);
      color: var(--accent);
    }
    .modal__nav-btn:disabled {
      opacity: 0.2;
      cursor: default;
    }
    .modal__nav-counter {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      color: var(--text-dim);
    }

    /* ── Legal Overlay ── */
    .legal-overlay {
      position: fixed;
      inset: 0;
      z-index: 5000;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateY(2rem);
      transition: opacity 0.35s ease, visibility 0.35s, transform 0.35s ease;
      overflow: hidden;
    }
    .legal-overlay--active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .legal-overlay__bar {
      flex-shrink: 0;
      height: 64px;
      display: flex;
      align-items: center;
      padding: 0 2rem;
      border-bottom: 1px solid var(--border);
      gap: 2rem;
      background: var(--bg);
    }
    .legal-overlay__back {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: none;
      border: 1px solid var(--border);
      color: var(--text-muted);
      cursor: pointer;
      padding: 0.4rem 1rem;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: border-color 0.2s, color 0.2s;
    }
    .legal-overlay__back:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .legal-overlay__brand {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text);
    }
    .legal-overlay__tabs {
      margin-left: auto;
      display: flex;
      gap: 0.5rem;
    }
    .legal-overlay__tab {
      background: none;
      border: 1px solid transparent;
      color: var(--text-dim);
      cursor: pointer;
      padding: 0.35rem 0.9rem;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: all 0.2s;
    }
    .legal-overlay__tab:hover {
      color: var(--text-muted);
      border-color: var(--border);
    }
    .legal-overlay__tab--active {
      color: var(--accent);
      border-color: var(--accent);
    }

    .legal-overlay__body {
      flex: 1;
      overflow-y: auto;
      padding: 4rem 2rem 6rem;
    }
    .legal-overlay__inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .legal-section { display: none; }
    .legal-section--active { display: block; }

    .legal-section h1 {
      font-size: clamp(1.6rem, 4vw, 2.5rem);
      font-weight: 200;
      letter-spacing: -0.02em;
      margin-bottom: 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }
    .legal-section h2 {
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      margin: 2.5rem 0 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border);
    }
    .legal-section h3 {
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--text-muted);
      margin: 1.5rem 0 0.5rem;
    }
    .legal-section p, .legal-section li {
      color: var(--text-muted);
      line-height: 1.9;
      font-size: 0.92rem;
      margin-bottom: 0.75rem;
    }
    .legal-section ul, .legal-section ol {
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
    .legal-section strong { color: var(--text); font-weight: 400; }
    .legal-section a { color: var(--accent); }

    @media (max-width: 640px) {
      .legal-overlay__brand { display: none; }
      .legal-overlay__tabs { margin-left: 0; }
      .modal__nav-bar { padding: 1rem; }
      .modal__nav-btn { padding: 0.5rem 0.75rem; font-size: 0.6rem; }
    }
