:root {
      --bg: #0a0a0a;
      --surface: #111111;
      --surface2: #181818;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --white: #f5f3ee;
      --muted: #888880;
      --border: rgba(201, 168, 76, 0.15);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
    }

    @media (hover: none) and (pointer: coarse) {
      body {
        cursor: auto;
      }

      .cursor,
      .cursor-ring {
        display: none !important;
      }
    }

    /* ── CUSTOM CURSOR ── */
    .cursor {
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201, 168, 76, 0.5);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.18s ease-out, width 0.3s, height 0.3s;
    }

    a:hover~.cursor,
    button:hover~.cursor {
      width: 20px;
      height: 20px;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 60px;
      transition: background 0.4s, padding 0.4s;
    }

    nav.scrolled {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(12px);
      padding: 18px 60px;
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--white);
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* ── NAV RIGHT ACTIONS ── */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* Language Toggle */
    .lang-toggle {
      display: flex;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
    }

    .lang-btn {
      padding: 7px 13px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      background: transparent;
      border: none;
      cursor: pointer;
      transition: background 0.25s, color 0.25s;
    }

    .lang-btn.active {
      background: var(--gold);
      color: #0a0a0a;
      font-weight: 600;
    }

    .lang-btn:not(.active):hover {
      color: var(--white);
    }

    .lang-divider {
      width: 1px;
      height: 28px;
      background: var(--border);
    }

    /* Register Button */
    .btn-register {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 600;
      padding: 8px 18px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      white-space: nowrap;
    }

    .btn-register:hover {
      background: var(--gold);
      color: #0a0a0a;
    }

    .btn-register svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    /* ── MOBILE MENU TOGGLE ── */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      z-index: 1100;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--white);
      transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* ── REGISTER MODAL ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--surface);
      border: 1px solid var(--border);
      width: 480px;
      max-width: 95vw;
      padding: 48px;
      position: relative;
      transform: translateY(24px);
      transition: transform 0.35s;
    }

    .modal-overlay.open .modal {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .modal-close:hover {
      color: var(--white);
    }

    .modal-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 4px;
      margin-bottom: 6px;
    }

    .modal-logo span {
      color: var(--gold);
    }

    .modal-subtitle {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 32px;
      letter-spacing: 0.5px;
    }

    /* Social sign-in buttons */
    .social-signin {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .signin-btn {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      padding: 13px 20px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 400;
      cursor: pointer;
      transition: border-color 0.3s, background 0.3s;
    }

    .signin-btn:hover {
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.04);
    }

    .signin-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .modal-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .modal-divider::before,
    .modal-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .modal-divider span {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .modal-field {
      margin-bottom: 16px;
    }

    .modal-field label {
      display: block;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 7px;
    }

    .modal-field input {
      width: 100%;
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 12px 16px;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s;
    }

    .modal-field input:focus {
      border-color: var(--gold);
    }

    .modal-submit {
      width: 100%;
      background: var(--gold);
      color: #0a0a0a;
      border: none;
      padding: 15px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.3s;
    }

    .modal-submit:hover {
      background: var(--gold-light);
    }

    .modal-switch {
      text-align: center;
      margin-top: 20px;
      font-size: 13px;
      color: var(--muted);
    }

    .modal-switch a {
      color: var(--gold);
      text-decoration: none;
    }

    .modal-switch a:hover {
      text-decoration: underline;
    }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1800&q=80');
      background-size: cover;
      background-position: center;
      filter: brightness(0.25);
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }

    .hero-bg.loaded {
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(201, 168, 76, 0.05) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 60px;
      max-width: 900px;
    }

    .hero-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 110px);
      font-weight: 300;
      line-height: 0.95;
      letter-spacing: -2px;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      margin-top: 30px;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245, 243, 238, 0.65);
      max-width: 480px;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s forwards;
    }

    .hero-cta {
      margin-top: 48px;
      display: flex;
      gap: 20px;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.9s 1.1s forwards;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: #0a0a0a;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 36px;
      font-weight: 600;
      transition: background 0.3s, transform 0.3s;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(245, 243, 238, 0.3);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 36px;
      font-weight: 600;
      transition: border-color 0.3s, transform 0.3s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 1s 1.8s forwards;
    }

    .hero-scroll-hint span {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s infinite;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      padding: 36px 40px;
      border-right: 1px solid var(--border);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.4s ease;
      opacity: 0.03;
    }

    .stat-item:hover::before {
      transform: scaleY(1);
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 46px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 6px;
    }

    /* ── SECTION COMMON ── */
    section {
      padding: 120px 60px;
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      line-height: 1.05;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    .divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 24px 0;
    }

    /* ── ABOUT ── */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      background: var(--surface);
    }

    .about-images {
      position: relative;
      height: 600px;
    }

    .about-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 75%;
      height: 80%;
      object-fit: cover;
      filter: brightness(0.85);
    }

    .about-img-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 55%;
      height: 50%;
      object-fit: cover;
      filter: brightness(0.85);
      border: 4px solid var(--bg);
    }

    .about-badge {
      position: absolute;
      top: 50%;
      left: 60%;
      transform: translate(-50%, -50%);
      width: 120px;
      height: 120px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 2;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .about-badge strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 700;
      color: #0a0a0a;
      line-height: 1;
    }

    .about-badge span {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(0, 0, 0, 0.65);
    }

    .about-text p {
      color: rgba(245, 243, 238, 0.65);
      line-height: 1.9;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .about-features {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 16px;
    }

    .feature-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
    }

    /* ── TEAM ── */
    #team {
      background: var(--surface2);
    }

    .team-header {
      margin-bottom: 60px;
      text-align: center;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 40px;
    }

    .team-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 40px 30px;
      text-align: center;
      cursor: none;
      transition: transform 0.4s, background 0.4s, border-color 0.4s;
    }

    .team-card:hover {
      background: rgba(201, 168, 76, 0.03);
      transform: translateY(-8px);
      border-color: rgba(201, 168, 76, 0.3);
    }

    .team-img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 24px;
      border: 2px solid var(--border);
      filter: grayscale(100%);
      transition: filter 0.4s, border-color 0.4s;
    }

    .team-card:hover .team-img {
      filter: grayscale(0%);
      border-color: var(--gold);
    }

    .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .team-role {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── TEAM MODAL ── */
    .team-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
      padding: 20px;
    }

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

    .team-modal {
      background: var(--surface);
      border: 1px solid var(--border);
      width: 850px;
      max-width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 50px;
      position: relative;
      transform: translateY(24px);
      transition: transform 0.35s;
      display: flex;
      gap: 40px;
      align-items: flex-start;
      cursor: none;
    }

    .team-modal-overlay.open .team-modal {
      transform: translateY(0);
    }

    .team-modal-close {
      position: absolute;
      top: 20px;
      right: 26px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .team-modal-close:hover {
      color: var(--white);
    }

    .team-modal-left {
      flex-shrink: 0;
      width: 280px;
      text-align: center;
    }

    .team-modal-img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 1px solid var(--border);
      margin-bottom: 24px;
      filter: grayscale(100%);
      transition: filter 0.4s;
      border-radius: 4px;
    }

    .team-modal-img:hover {
      filter: grayscale(0%);
    }

    .team-modal-right {
      flex-grow: 1;
      text-align: left;
    }

    html[dir="rtl"] .team-modal-right {
      text-align: right;
    }

    .team-modal-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .team-modal-role {
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 24px;
      opacity: 0.8;
    }

    .team-modal-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 32px;
      font-weight: 300;
    }

    .team-tasks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 0
    }

    .team-tasks li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--white);
      opacity: 0.9;
      line-height: 1.6;
    }

    .team-tasks li::before {
      content: '◇';
      color: var(--gold);
      font-size: 16px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .team-modal {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
      }

      .team-modal-left {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }
    }

    /* ── PROJECTS ── */
    #projects {
      background: var(--bg);
      overflow-x: hidden;
    }

    .projects-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
    }

    .project-card {
      position: relative;
      background: transparent;
      cursor: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .project-img-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 4 / 5;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease, filter 0.6s;
      filter: brightness(0.9);
    }

    .project-card:hover img {
      transform: scale(1.05);
      filter: brightness(0.7);
    }

    .project-plus {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 60px;
      height: 60px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 2;
      color: #000;
      font-size: 24px;
    }

    .project-card:hover .project-plus {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .project-info {
      position: relative;
      z-index: 1;
      transition: transform 0.4s;
    }

    .project-cat {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .project-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--white);
    }

    .project-loc {
      font-size: 12px;
      color: var(--muted);
    }

    /* Simple Card Variant */
    .project-card.simple {
      height: 420px;
      border: 1px solid var(--border);
    }

    .project-card.simple .project-img-wrapper {
      flex: 1;
    }

    .project-card.simple .project-info {
      padding: 24px;
      text-align: center;
      background: var(--surface2);
      border-top: 1px solid var(--border);
      transition: background 0.3s;
    }

    .project-card.simple:hover .project-info {
      background: var(--surface);
    }

    .project-card.simple .project-name {
      font-size: 18px;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .project-card.simple .project-cat {
      font-size: 9px;
      opacity: 0.7;
      letter-spacing: 4px;
    }

    /* ── PROJECT MODAL ── */
    .project-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.98);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      backdrop-filter: blur(20px);
    }

    .project-modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .project-modal {
      background: var(--bg);
      width: 100vw;
      height: 100vh;
      position: relative;
      display: flex;
      flex-direction: row;
      overflow: hidden;
      transform: translateY(100%);
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .project-modal-overlay.open .project-modal {
      transform: translateY(0);
    }

    .project-modal-close {
      position: absolute;
      top: 40px;
      right: 40px;
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: none;
      z-index: 100;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .project-modal-close:hover {
      background: var(--gold);
      color: #000;
      border-color: var(--gold);
      transform: scale(1.05);
    }

    .pm-left {
      flex: 1.5;
      background: var(--surface);
      position: relative;
      height: 100%;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--gold) transparent;
    }

    .pm-left::-webkit-scrollbar {
      width: 6px;
    }

    .pm-left::-webkit-scrollbar-thumb {
      background: var(--gold);
    }

    .gallery-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 30px;
    }

    .gallery-item {
      position: relative;
      width: 100%;
    }

    .pm-img {
      width: 100%;
      height: auto;
      display: block;
      border: 1px solid var(--border);
    }

    .gallery-caption {
      margin-top: 15px;
      padding: 15px;
      background: var(--surface2);
      border-left: 3px solid var(--gold);
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    .pm-right {
      flex: 1;
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow-y: auto;
      background: var(--bg);
      border-left: 1px solid var(--border);
    }

    .pm-cat {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .pm-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .pm-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--border);
    }

    .pm-meta-item strong {
      display: block;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .pm-meta-item span {
      font-size: 15px;
      color: var(--white);
    }

    .pm-desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    /* ── PORTAL GRID (Drill-Down) ── */
    .portal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      padding: 30px;
      width: 100%;
    }

    .portal-card {
      position: relative;
      height: 220px;
      background: var(--surface2);
      border: 1px solid var(--border);
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .portal-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .portal-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6);
      transition: transform 0.8s ease;
    }

    .portal-card:hover img {
      transform: scale(1.1);
      filter: brightness(0.4);
    }

    .portal-card-info {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      z-index: 2;
    }

    .portal-card-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 4px;
    }

    .portal-card-count {
      font-size: 11px;
      color: var(--gold);
      opacity: 0.8;
      letter-spacing: 1px;
    }

    .pm-back-btn {
      margin-bottom: 24px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid rgba(201, 168, 76, 0.2);
      padding: 10px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .pm-back-btn:hover {
      background: var(--gold);
      color: #000;
    }

    /* Unique Grid Layout for specific projects like Modern Kitchen */
    .pm-grid-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      padding: 1.5rem;
    }

    .pm-grid-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 16/9;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      cursor: pointer;
    }

    .pm-grid-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    }

    .pm-grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .pm-grid-item:hover img {
      transform: scale(1.1);
    }

    /* ── SERVICES ── */
    #services {
      background: var(--surface);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 60px;
      border: 1px solid var(--border);
    }

    .service-card {
      padding: 50px 40px;
      border-right: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }

    .service-card:last-child {
      border-right: none;
    }

    .service-card:hover {
      background: rgba(201, 168, 76, 0.04);
    }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 72px;
      font-weight: 700;
      color: rgba(201, 168, 76, 0.1);
      line-height: 1;
      margin-bottom: 20px;
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .service-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
    }

    .service-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: gap 0.3s;
    }

    .service-arrow:hover {
      gap: 14px;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info {
      padding-top: 20px;
    }

    .contact-info p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-detail-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 16px;
    }

    .contact-detail-text strong {
      display: block;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .contact-detail-text span {
      font-size: 15px;
      color: var(--white);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field label {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px 18px;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.3s;
      resize: none;
      width: 100%;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--gold);
    }

    .form-field textarea {
      height: 130px;
    }

    .submit-btn {
      background: var(--gold);
      color: #0a0a0a;
      border: none;
      padding: 18px 40px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: none;
      transition: background 0.3s, transform 0.3s;
      align-self: flex-start;
    }

    .submit-btn:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    /* ── SOCIAL BAR ── */
    .social-bar {
      background: var(--surface2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 50px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .social-bar-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
    }

    .social-bar-text em {
      font-style: italic;
      color: var(--gold);
    }

    .social-links {
      display: flex;
      gap: 16px;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      border: 1px solid var(--border);
      text-decoration: none;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: border-color 0.3s, background 0.3s, color 0.3s;
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: currentColor;
      transform: translateX(-100%);
      opacity: 0.08;
      transition: transform 0.35s ease;
    }

    .social-link:hover::before {
      transform: translateX(0);
    }

    .social-link.whatsapp {
      --c: #25D366;
    }

    .social-link.facebook {
      --c: #1877F2;
    }

    .social-link.instagram {
      --c: #E4405F;
    }

    .social-link.snapchat {
      --c: #FFFC00;
    }

    .social-link.tiktok {
      --c: #ffffff;
    }

    .social-link:hover {
      border-color: var(--c);
      color: var(--c);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg);
      padding: 60px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      border-top: 1px solid var(--border);
    }

    /* .footer-brand {} */

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-logo span {
      color: var(--gold);
    }

    .footer-tagline {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul a {
      font-size: 14px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-col ul a:hover {
      color: var(--white);
    }

    .footer-bottom {
      padding: 24px 60px;
      background: var(--bg);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 1px;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1200px) {
      nav {
        padding: 22px 40px;
      }

      nav.scrolled {
        padding: 14px 40px;
      }

      section {
        padding: 100px 40px;
      }

      .hero-content {
        padding: 0 40px;
      }
    }

    @media (max-width: 1024px) {
      .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      }

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

      .stats-bar {
        grid-template-columns: 1fr 1fr;
      }

      footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      #about {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .about-images {
        height: 450px;
      }

      #contact {
        grid-template-columns: 1fr;
        gap: 60px;
      }
    }

    @media (max-width: 900px) {
      .hero-content {
        text-align: center;
        margin: 0 auto;
      }

      .hero-title {
        font-size: clamp(42px, 10vw, 80px);
      }

      .hero-cta {
        justify-content: center;
      }

      .menu-toggle {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links a {
        font-size: 20px;
        letter-spacing: 4px;
      }

      .nav-actions {
        display: none;
      }

      .nav-actions-mobile {
        display: flex;
      }

      .project-modal {
        flex-direction: column;
        overflow-y: auto;
      }

      .pm-left {
        flex: none;
        width: 100%;
        height: auto;
        overflow: visible;
      }

      .pm-right {
        flex: none;
        width: 100%;
        height: auto;
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid var(--border);
        overflow: visible;
      }

      .pm-title {
        font-size: 32px;
      }

      .project-modal-close {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 80px 20px;
      }

      .hero-content {
        padding: 0 20px;
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr;
      }

      .stat-item {
        padding: 25px 15px;
      }

      .stat-num {
        font-size: 36px;
      }

      .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .social-bar {
        padding: 40px 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .social-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
      }

      .social-link {
        flex: 1;
        min-width: 140px;
        justify-content: center;
      }

      footer {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .footer-brand,
      .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-logo {
        margin-bottom: 20px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 38px;
      }

      .hero-cta {
        flex-direction: column;
        width: 100%;
      }

      .btn-gold,
      .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
      }

      .stats-bar {
        grid-template-columns: 1fr;
      }

      .about-images {
        height: 320px;
      }

      .about-badge {
        width: 90px;
        height: 90px;
        left: 75%;
        top: 40%;
      }

      .about-badge strong {
        font-size: 22px;
      }

      .project-modal-close {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 9px;
      }

      .nav-logo {
        font-size: 18px;
        letter-spacing: 2px;
      }

      .pm-meta {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .modal {
        padding: 30px 20px;
      }

      .nav-links a {
        font-size: 18px;
        letter-spacing: 2px;
      }
    }

    /* Mobile specific actions in menu */
    .nav-actions-mobile {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
      width: 100%;
      padding: 0 40px;
    }

    @media (max-width: 900px) {
      .nav-actions-mobile {
        display: flex;
      }
    }

    /* ── VELVET GRID (New Project) ── */
    #velvetGridContainer {
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 10000;
      display: none;
      flex-direction: column;
      overflow-y: auto;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      animation: fadeIn 0.3s ease forwards;
    }

    #velvetGridContainer.active {
      display: flex;
    }

    .vg-screen {
      display: none;
      padding: 40px 60px;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      animation: fadeIn 0.28s ease forwards;
    }

    .vg-screen.active {
      display: block;
    }

    .vg-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .vg-back-btn {
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid var(--border);
      color: var(--gold);
      padding: 8px 16px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 14px;
      transition: 0.28s ease;
    }

    .vg-back-btn:hover {
      background: var(--gold);
      color: var(--bg);
    }

    .vg-title {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .vg-badge {
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 13px;
    }

    .vg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .vg-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: 0.28s ease;
      position: relative;
    }

    .vg-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold);
      box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
    }

    .vg-card img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }

    .vg-card-info {
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .vg-card-title {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      font-size: 13px;
      color: var(--gold);
    }

    .vg-photo-cell {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: 0.28s ease;
    }

    .vg-photo-cell:hover {
      transform: translateY(-8px);
      border-color: var(--gold);
    }

    .vg-photo-cell img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      display: block;
    }

    .vg-photo-info {
      padding: 18px;
    }

    .vg-photo-name {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .vg-photo-cap {
      font-size: 13px;
      color: var(--muted);
    }

    .vg-detail-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 50px;
    }

    .vg-detail-img {
      width: 100%;
      border-radius: 16px;
      border: 1px solid var(--border);
    }

    .vg-detail-italic {
      font-style: italic;
      color: var(--muted);
      border-left: 2px solid var(--gold);
      padding-left: 20px;
      margin-top: 15px;
    }

    .vg-tag {
      display: inline-block;
      background: rgba(201, 168, 76, 0.1);
      color: var(--gold);
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .vg-detail-name {
      font-size: 32px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
    }

    .vg-detail-loc {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .vg-detail-desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
    }

    .vg-meta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 25px;
    }

    .vg-meta-item {
      background: var(--surface2);
      border: 1px solid var(--border);
      padding: 16px;
      border-radius: 12px;
    }

    .vg-meta-label {
      font-size: 10px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .vg-meta-value {
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
    }

    .vg-nav-btns {
      display: flex;
      gap: 12px;
      margin-top: 40px;
    }

    .vg-nav-btn {
      flex: 1;
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.28s ease;
    }

    .vg-nav-btn:hover:not(:disabled) {
      border-color: var(--gold);
      background: rgba(201, 168, 76, 0.05);
      color: var(--gold);
    }

    .vg-nav-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    @media (max-width: 1100px) {
      .vg-detail-layout {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .vg-grid {
        grid-template-columns: 1fr 1fr;
      }

      .vg-screen {
        padding: 30px 20px;
      }
    }

    @media (max-width: 600px) {
      .vg-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── LIGHTBOX ── */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(15px);
      z-index: 60000;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      animation: fadeIn 0.3s ease;
    }

    .lightbox-overlay.active {
      display: flex;
    }

    .lightbox-img-container {
      position: relative;
      max-width: 90vw;
      max-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 32px;
      cursor: pointer;
      z-index: 60001;
      transition: color 0.3s;
    }

    .lightbox-close:hover {
      color: var(--gold);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      left: 0;
      padding: 0 20px;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .lightbox-btn {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      cursor: pointer;
      pointer-events: all;
      transition: all 0.3s ease;
      font-size: 24px;
    }

    .lightbox-btn:hover {
      background: var(--gold);
      color: #000;
      border-color: var(--gold);
    }

    .lightbox-counter {
      margin-top: 25px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      color: var(--muted);
      letter-spacing: 2px;
    }

    .pm-img,
    .pm-grid-item img,
    .vg-photo-cell img,
    .vg-detail-img {
      cursor: pointer !important;
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
    }

    .pm-img:hover,
    .pm-grid-item img:hover,
    .vg-photo-cell img:hover,
    .vg-detail-img:hover {
      transform: scale(1.03);
      filter: brightness(1.1);
    }

    /* ── RESPONSIVE DESIGN ── */
    @media (max-width: 1024px) {
      .hero-title { font-size: clamp(60px, 8vw, 80px); }
      #about { grid-template-columns: 1fr; gap: 40px; }
      .about-images { height: 400px; margin-bottom: 20px; }
      .about-img-main { width: 100%; height: 100%; position: relative; }
      .about-img-accent { display: none; }
      .team-modal { flex-direction: column; width: 90%; max-height: 90vh; overflow-y: auto; }
      .team-modal-left { width: 100%; height: 300px; border-right: none; border-bottom: 1px solid var(--border); }
      .team-modal-right { padding: 30px; }
    }

    @media (max-width: 768px) {
      /* Navigation */
      nav { padding: 20px 30px; }
      .nav-actions { display: none; }
      .menu-toggle { display: flex; }
      .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #0a0a0a; border-left: 1px solid var(--border);
        flex-direction: column; align-items: flex-start; padding: 100px 30px 40px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
      }
      .nav-links.active { right: 0; }
      .nav-actions-mobile { display: flex; flex-direction: column; gap: 15px; width: 100%; margin-top: 30px; }

      /* Typography & Spacing */
      .hero-title { font-size: clamp(40px, 10vw, 55px); }
      .section-title { font-size: clamp(32px, 8vw, 48px); }
      section { padding: 60px 30px; }
      
      /* Grids & Cards */
      .stats-bar { grid-template-columns: 1fr 1fr; }
      .stat-item { padding: 25px 15px; border-bottom: 1px solid var(--border); }
      .stat-num { font-size: 36px; }
      .services-grid, .projects-grid, .team-grid, .vg-grid { grid-template-columns: 1fr; }
      
      /* Modals */
      .project-modal { flex-direction: column; max-height: 100vh; }
      .pm-left { width: 100%; height: 300px; }
      .pm-right { width: 100%; overflow-y: auto; padding: 30px; }
      
      /* Forms */
      .form-row { grid-template-columns: 1fr; gap: 16px; }
      #contact { display: flex; flex-direction: column; gap: 40px; }
      .contact-info { margin-bottom: 20px; }
      
      /* Footer */
      footer { flex-direction: column; gap: 40px; padding: 60px 30px 40px; }
      .footer-brand { max-width: 100%; margin-bottom: 20px; }
    }