
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --black: #070707;
      --dark: #111318;
      --dark-soft: #1b1f26;
      --gold: #d4b483;
      --gold-light: #f0d6a2;
      --white: #f5f5f7;
      --grey: #a9abb3;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1120px, 90%);
      margin: auto;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10;
      background: rgba(7, 7, 7, 0.82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(212, 180, 131, 0.15);
    }

    nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
    }

    .logo-img {
      width: 150px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 0 18px rgba(212, 180, 131, 0.35));
    }

    .nav-links {
      display: flex;
      gap: 35px;
      color: var(--grey);
      font-size: 14px;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 78px;
      position: relative;
      background:
        radial-gradient(circle at 70% 30%, rgba(212, 180, 131, 0.18), transparent 28%),
        linear-gradient(135deg, #070707 0%, #111318 55%, #070707 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, black, transparent 85%);
    }

    .hero-content {
      position: relative;
      max-width: 760px;
    }

    .eyebrow {
      color: var(--gold);
      letter-spacing: 4px;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(42px, 7vw, 82px);
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 24px;
    }

    h1 span {
      color: var(--gold);
    }

    .hero p {
      color: var(--grey);
      font-size: 19px;
      max-width: 610px;
      margin-bottom: 34px;
    }

    .btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #111;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 35px rgba(212, 180, 131, 0.28);
    }

    .btn-secondary {
      border: 1px solid rgba(212, 180, 131, 0.35);
      color: var(--white);
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      max-width: 660px;
      margin-bottom: 54px;
    }

    .section-title h2 {
      font-size: clamp(32px, 4vw, 52px);
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--grey);
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .card {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid rgba(212, 180, 131, 0.15);
      border-radius: 24px;
      padding: 30px;
      min-height: 240px;
      transition: 0.25s;
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 180, 131, 0.45);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: rgba(212, 180, 131, 0.12);
      color: var(--gold);
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 24px;
    }

    .card h3 {
      margin-bottom: 12px;
      font-size: 22px;
    }

    .card p {
      color: var(--grey);
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .project {
      border-radius: 26px;
      overflow: hidden;
      background: var(--dark);
      border: 1px solid rgba(212, 180, 131, 0.15);
    }

    .project-img {
      height: 230px;
      background:
        linear-gradient(135deg, rgba(212,180,131,0.3), rgba(0,0,0,0.2)),
        linear-gradient(135deg, #171b22, #050505);
      display: flex;
      align-items: end;
      padding: 24px;
      font-size: 34px;
      font-weight: 800;
      color: var(--gold);
    }

    .project-content {
      padding: 24px;
    }

    .project-content p {
      color: var(--grey);
      margin-top: 8px;
    }

    .about-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      background: linear-gradient(135deg, rgba(212,180,131,0.1), rgba(255,255,255,0.03));
      border: 1px solid rgba(212, 180, 131, 0.18);
      border-radius: 32px;
      padding: 44px;
    }

    .about-box p {
      color: var(--grey);
      margin-top: 16px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .stat {
      background: rgba(0,0,0,0.25);
      border-radius: 20px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .stat strong {
      color: var(--gold);
      font-size: 32px;
    }

    .contact {
      text-align: center;
      background:
        radial-gradient(circle at center, rgba(212,180,131,0.16), transparent 35%),
        #070707;
    }

    .contact h2 {
      font-size: clamp(34px, 5vw, 60px);
      margin-bottom: 18px;
    }

    .contact p {
      color: var(--grey);
      margin-bottom: 30px;
    }

    footer {
      border-top: 1px solid rgba(212, 180, 131, 0.15);
      padding: 30px 0;
      color: var(--grey);
      text-align: center;
      font-size: 14px;
    }

    @media (max-width: 850px) {
      .nav-links {
        display: none;
      }

      .services,
      .projects,
      .about-box {
        grid-template-columns: 1fr;
      }

      section {
        padding: 72px 0;
      }
    }