
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

 :root {
    --gold: #C9A84C;
    --gold-light: #dbbb5b;
    --gold-dim: #8B6B28;
    --deep: #060810;
    --dark: #0D1018;
    --card: #111520;
    --surface: #161B26;
    --text: #E8E4DC;
    --muted: #8A8A9A;
    --white: #FAFAF8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
  }
  .cursor-follower {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s ease, opacity 0.3s;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 28px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(180deg, rgba(6,8,16,0.95) 0%, transparent 100%);
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.15em;
    color: var(--white);
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--deep);
    background: var(--gold);
    padding: 12px 28px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: none;
    transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* Hamburger Menu */
  .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 6px;
     background: none;
     border: none;
     padding: 0;
     z-index: 101;
     pointer-events: auto;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Nav Menu */
  .nav-mobile {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: var(--deep);
     z-index: 99;
     padding: 120px 40px 40px;
     opacity: 0;
     transform: translateY(-100%);
     transition: all 0.3s ease;
     pointer-events: auto;
  }
  .nav-mobile.active {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .nav-mobile a {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
  }
  .nav-mobile a:hover {
    color: var(--gold);
  }
  .nav-mobile-cta {
    margin-top: 40px;
    width: 100%;
  }
    .main-nav {
          position: fixed; top: 0; left: 0; right: 0; z-index: 100;
          padding: 28px 60px;
          display: flex; align-items: center; justify-content: space-between;
          background: linear-gradient(180deg, rgba(6,8,16,0.95) 0%, transparent 100%);
          backdrop-filter: blur(2px);
          border-bottom: 1px solid rgba(201,168,76,0.08);
        }
        .nav-logo {
          font-family: 'Bebas Neue', sans-serif;
          font-size: 1.9rem;
          letter-spacing: 0.15em;
          color: var(--white);
        }
        .nav-logo span { color: var(--gold); }
        .nav-links {
          display: flex;
          gap: 40px;
          list-style: none;
          align-items: center;
        }
        .nav-links a {
          font-size: 0.78rem;
          letter-spacing: 0.18em;
          text-transform: uppercase;
          color: var(--muted);
          text-decoration: none;
          transition: color 0.3s;
          font-weight: 500;
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta {
          font-size: 0.75rem;
          letter-spacing: 0.2em;
          text-transform: uppercase;
          color: var(--deep);
          background: var(--gold);
          padding: 12px 28px;
          border: none;
          font-family: 'Outfit', sans-serif;
          font-weight: 600;
          cursor: pointer;
          transition: background 0.3s, transform 0.2s;
        }
        .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
        .desktop-cta { display: inline-block; }

        .hamburger {
          display: none;
          flex-direction: column;
          gap: 6px;
          background: none;
          border: none;
          padding: 0;
          z-index: 101;
          cursor: pointer;
        }
        .hamburger span {
          display: block;
          width: 24px;
          height: 2px;
          background: var(--white);
          transition: all 0.3s ease;
          border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) {
          transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active span:nth-child(2) {
          opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-mobile {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: var(--deep);
          z-index: 99;
          padding: 120px 40px 40px;
          opacity: 0;
          transform: translateY(-100%);
          transition: all 0.3s ease;
          pointer-events: auto;
        }
        .nav-mobile.active {
          opacity: 1;
          transform: translateY(0);
          display: block;
        }
        .nav-mobile ul {
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 30px;
          align-items: flex-start;
        }
        .nav-mobile a {
          font-size: 0.9rem;
          letter-spacing: 0.18em;
          text-transform: uppercase;
          color: var(--text);
          text-decoration: none;
          transition: color 0.3s;
          display: block;
        }
        .nav-mobile a:hover {
          color: var(--gold);
        }
        .nav-mobile-cta {
          margin-top: 40px;
          width: 100%;
        }

        @media (max-width: 1024px) {
          .nav-links, .desktop-cta { display: none !important; }
          .hamburger { display: flex !important; }
          .nav-mobile { display: block; }
        }
        @media (min-width: 1025px) {
          .nav-links { display: flex !important; }
          .desktop-cta { display: inline-block !important; }
          .hamburger { display: none !important; }
          .nav-mobile { display: none !important; }
        }

  /* HERO */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    padding: 0 60px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
                radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
                linear-gradient(135deg, #060810 0%, #0A0E1A 50%, #060810 100%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: 
      linear-gradient(var(--gold) 1px, transparent 1px),
      linear-gradient(90deg, var(--gold) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 80% at 60% 50%, black 0%, transparent 70%);
  }
  .hero-orb {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 40%, transparent 70%);
    border: 1px solid rgba(201,168,76,0.15);
    animation: pulse-orb 4s ease-in-out infinite;
  }
  .hero-orb::before {
    content: '';
    position: absolute; inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    animation: pulse-orb 4s ease-in-out infinite reverse;
  }
  .hero-orb::after {
    content: '';
    position: absolute; inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
  }
  
  /* Orbital Stars */
  .orbital-stars {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }
  
    .star-particle {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      opacity: 0.85;
      box-shadow: 0 0 12px 4px rgba(63,120,93,0.25), 0 0 24px 8px rgba(63,120,93,0.12);
      transition: background 0.3s;
    }

    /* Add some color variety */
    .star-particle.color1 { background: #3f785d; }
    .star-particle.color2 { background: #C9A84C; }
    .star-particle.color3 { background: #dbbb5b; }
    .star-particle.color4 { background: #8B6B28; }
    .star-particle.color5 { background: #fff; }
  
  @keyframes orbit {
    from {
      transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    to {
      transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
  }
  
  @keyframes pulse-orb {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateY(-50%) scale(1.03); }
  }
  
  /* Word formation text */
  .orbital-word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s, filter 0.5s;
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 16px #fff) brightness(1.5);
    z-index: 2;
    text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 32px #fff, 0 0 64px #fff;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .orbital-word.visible {
    opacity: 1;
  }
  .orbital-word.hold {
    opacity: 1;
    filter: drop-shadow(0 0 16px #fff) brightness(2);
  }
  .hero-tag::before {
    content: '';
    display: block; width: 30px; height: 1px;
    background: var(--gold);
  }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
  }
  .hero-sub {
    margin-top: 36px;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 32px;
    margin-top: 50px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--gold);
    color: var(--deep);
    padding: 18px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-primary .arrow {
    width: 18px; height: 1px;
    background: var(--deep);
    position: relative;
    transition: width 0.3s;
  }
  .btn-primary:hover .arrow { width: 26px; }
  .btn-primary .arrow::after {
    content: '';
    position: absolute; right: 0; top: -3px;
    width: 7px; height: 7px;
    border-right: 1.5px solid var(--deep);
    border-top: 1.5px solid var(--deep);
    transform: rotate(45deg);
  }
  .btn-ghost {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(138,138,154,0.3);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
  }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

  .hero-stats {
    position: absolute; right: 60px; bottom: 60px;
    display: flex; gap: 50px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
  }
  .stat-item { text-align: right; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    color: var(--white);
    line-height: 1;
  }
  .stat-num span { color: var(--gold); }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }
  .scroll-indicator {
    position: absolute; bottom: 40px; left: 60px;
    display: flex; align-items: center; gap: 14px;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scroll-anim 2s ease-in-out infinite;
  }
  @keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  .scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden;
    background: var(--gold);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--deep);
    padding-right: 24px;
  }
  .marquee-dot {
    width: 5px; height: 5px;
    background: rgba(6,8,16,0.4);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION BASE */
  section { padding: 120px 60px; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .section-tag::before {
    content: '';
    display: block; width: 24px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold); }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: 'REXUS';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22vw;
    color: rgba(201,168,76,0.02);
    right: -5%;
    bottom: -10%;
    pointer-events: none;
    letter-spacing: -0.02em;
  }
  .about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    margin-top: 28px;
  }
  .about-text p + p { margin-top: 16px; }
  .about-image {
    position: relative;
    height: 550px;
  }
  .about-img-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--card) 100%);
    border: 1px solid rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .about-img-main::after {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(circle at 30% 30%, rgba(201,168,76,0.08) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(201,168,76,0.05) 0%, transparent 50%);
  }
  .about-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(201,168,76,0.15);
    z-index: 1;
    position: relative;
  }
  .about-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 140px; height: 140px;
    background: var(--gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 2;
  }
  .about-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--deep);
    line-height: 1;
  }
  .about-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--deep);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
  }

  /* SERVICES */
  .services { background: var(--deep); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 70px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--card);
    padding: 50px 40px;
    border: 1px solid rgba(201,168,76,0.07);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s;
    cursor: none;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .service-card::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .service-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-4px);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover::after { opacity: 1; }
  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s;
  }
  .service-card:hover .service-num { color: rgba(201,168,76,0.15); }
  .service-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
  }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .service-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
    position: relative; z-index: 1;
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    position: relative; z-index: 1;
    transition: gap 0.3s;
  }
  .service-link:hover { gap: 14px; }
  .service-link::after {
    content: '→';
    font-size: 0.9rem;
  }

  /* EXPERIENCE / FEATURES */
  .experience {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .experience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .exp-features {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 50px;
  }
  .exp-feature {
    padding: 28px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: start;
    transition: padding-left 0.3s;
    cursor: none;
  }
  .exp-feature:first-child { border-top: 1px solid rgba(201,168,76,0.1); }
  .exp-feature:hover { padding-left: 10px; }
  .exp-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    padding-top: 3px;
  }
  .exp-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
  }
  .exp-feature p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }
  .exp-visual {
    position: relative;
    height: 600px;
  }
  .exp-card-main {
    position: absolute;
    top: 0; left: 0; right: 60px; bottom: 60px;
    background: linear-gradient(145deg, var(--surface), var(--card));
    border: 1px solid rgba(201,168,76,0.12);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    overflow: hidden;
  }
  .exp-card-main::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.04) 100%);
    z-index: 2;
  }
  .exp-card-main > div,
  .exp-card-main > .exp-label,
  .exp-card-main > .exp-card-title,
  .exp-card-main > .exp-dots {
    position: relative;
    z-index: 3;
  }
  .exp-card-accent {
    position: absolute;
    bottom: 0; right: 0; width: 250px; height: 250px;
    border: 1px solid rgba(201,168,76,0.15);
    transform: translate(60px, 60px);
    background: var(--card);
    display: flex; align-items: center; justify-content: center;
    padding: 30px;
  }
  .exp-card-inner-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.4;
    text-align: center;
  }
  .exp-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative; z-index: 1;
  }
  .exp-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    position: relative; z-index: 1;
  }
  .exp-dots {
    position: absolute;
    top: 50px; right: 20px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .exp-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
  }
  .exp-dot.active { background: var(--gold); width: 4px; height: 16px; border-radius: 2px; }

  /* PORTFOLIO */
  .portfolio { background: var(--deep); }
  .portfolio-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 3px;
  }
  .portfolio-item {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(201,168,76,0.06);
    cursor: none;
  }
  .portfolio-item:first-child { grid-row: span 2; }
  .portfolio-item-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(180deg, transparent 30%, rgba(6,8,16,0.9) 100%);
    transition: all 0.4s;
  }
  .portfolio-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .portfolio-item:hover .portfolio-bg { transform: scale(1.05); }


  .p-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    opacity: 0.06;
    transition: opacity 0.4s;
  }
  .portfolio-item:hover .p-icon { opacity: 0.1; }

  .portfolio-cat {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .portfolio-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    position: relative; z-index: 1;
  }
  .portfolio-item:first-child .portfolio-name { font-size: 2rem; }
  .portfolio-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0;
    transform: translate(5px, -5px);
    transition: all 0.3s;
  }
  .portfolio-item:hover .portfolio-arrow { opacity: 1; transform: translate(0, 0); }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .testimonials::before {
    content: '"';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40vw;
    color: rgba(201,168,76,0.02);
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    line-height: 1;
    pointer-events: none;
  }
  .testimonials-inner { max-width: 800px; margin: 0 auto; position: relative; }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--text);
    margin: 40px 0;
  }
  .testimonial-author {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 36px;
  }
  .author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    border: 2px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--deep);
    font-weight: 600;
  }
  .author-info { text-align: left; }
  .author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
  }
  .author-role {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .testimonial-dots {
    display: flex; gap: 8px; justify-content: center;
    margin-top: 50px;
  }
  .t-dot {
    width: 24px; height: 2px;
    background: rgba(201,168,76,0.2);
    transition: all 0.3s;
    cursor: none;
  }
  .t-dot.active { background: var(--gold); width: 40px; }

  /* CTA */
  .cta-section {
    background: var(--gold);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(6,8,16,0.03) 30px, rgba(6,8,16,0.03) 31px);
  }
  .cta-inner {
    display: flex; justify-content: space-between; align-items: center;
    position: relative;
  }
  .cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--deep);
    line-height: 1.15;
  }
  .cta-inner h2 strong { font-weight: 600; display: block; }
  .cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
  .btn-dark {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--deep);
    color: var(--gold);
    padding: 18px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-dark:hover { background: #1A2030; transform: translateY(-2px); }
  .cta-sub {
    font-size: 0.78rem;
    color: rgba(6,8,16,0.5);
    letter-spacing: 0.1em;
  }

  /* FOOTER */
  footer {
    background: var(--deep);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 70px 60px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .footer-brand .logo span { color: var(--gold); }
  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
    max-width: 280px;
  }
  .footer-social { display: flex; gap: 12px; margin-top: 28px; }
  .social-btn {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--muted); font-weight: 300; }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 1024px) {
    nav { padding: 24px 30px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-mobile { display: block; }
    section { padding: 80px 30px; }
    h1 { font-size: clamp(3rem, 10vw, 5rem); }
    .hero-stats { right: 30px; bottom: 30px; }
    .about { grid-template-columns: 1fr; }
    .about-image { height: 350px; }
    .services-grid { grid-template-columns: 1fr; }
    .experience-inner { grid-template-columns: 1fr; }
    .exp-visual { height: 350px; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .portfolio-item:first-child { grid-row: span 1; }
    .cta-inner { flex-direction: column; gap: 40px; text-align: center; }
    .cta-actions { align-items: center; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero { padding: 0 30px; }
    .cta-section { padding: 80px 30px; }
    footer { padding: 60px 30px 30px; }
  }
  