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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #050505;
      color: #fff;
      font-family: "Inter", sans-serif;
      overflow-x: hidden;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 120px;
      z-index: 50;
      display: flex;
      align-items: center;
      padding: 0 90px;
      gap: 70px;
      background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
      pointer-events: none;
    }

    .logo {
      width: 375px;
      height: 150px;
      opacity: .9;
      pointer-events: auto;
    }

    .logo img {
      width: 100%;
      height: 100%;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
      pointer-events: auto;
    }

    .nav a {
      color: rgba(255,255,255,.72);
      text-decoration: none;
      font-size: 14px;
      font-weight: 300;
      letter-spacing: .02em;
      position: relative;
      transition: color .3s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: #fff;
    }

    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,.8);
    }

    .hero {
      min-height: 100vh;
    }

    .hero-top {
      position: relative;
      height: 49vh;
      min-height: 350px;
      overflow: hidden;
    }

    .hero-top img,
    .work-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.07);
      transition: transform 1.2s ease, filter .8s ease;
    }

    .hero-top::after,
    .work-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,.05) 45%, rgba(0,0,0,.45)),
        linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.1), rgba(0,0,0,.35));
      pointer-events: none;
    }

    .work-grid {
      display: grid;
      grid-template-columns: 1fr;
    }

    .work-card {
      position: relative;
      height: 47vh;
      min-height: 330px;
      overflow: hidden;
      cursor: pointer;
      border-bottom: 1px solid rgba(255,255,255,.04);
    }

    .work-card:hover img {
      transform: scale(1.08);
      filter: brightness(1.08);
    }

    .work-content {
      position: absolute;
      z-index: 5;
      left: 26.5%;
      top: 50%;
      transform: translateY(-50%);
      max-width: 600px;
    }

    .work-content.align-left {
      left: 26.5%;
    }

    .work-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(34px, 3vw, 52px);
      line-height: .95;
      font-weight: 700;
      letter-spacing: .01em;
      text-shadow: 0 2px 20px rgba(0,0,0,.45);
      margin-bottom: 12px;
    }

    .work-category {
      color: rgba(255,255,255,.82);
      font-size: 14px;
      font-weight: 300;
      margin-bottom: 9px;
      text-shadow: 0 2px 12px rgba(0,0,0,.5);
    }

    .more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 29px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.85);
      border-radius: 6px;
      color: #fff;
      text-decoration: none;
      font-size: 11px;
      letter-spacing: .38em;
      line-height: 1;
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }

    .more-btn:hover {
      background: #fff;
      color: #101010;
      transform: translateY(-2px);
    }

    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp .9s ease forwards;
    }

    .work-card:nth-child(1) .fade-up { animation-delay: .08s; }
    .work-card:nth-child(2) .fade-up { animation-delay: .16s; }
    .work-card:nth-child(3) .fade-up { animation-delay: .24s; }

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

    .pdf-float {
      position: fixed;
      right: 26px;
      bottom: 26px;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: rgba(255,255,255,.95);
      color: #c31625;
      z-index: 60;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 8px 26px rgba(0,0,0,.35);
      text-decoration: none;
    }

    .mobile-menu {
      display: none;
      margin-left: auto;
      width: 38px;
      height: 28px;
      border: none;
      background: transparent;
      pointer-events: auto;
    }

    .mobile-menu span {
      display: block;
      width: 100%;
      height: 1px;
      margin: 8px 0;
      background: rgba(255,255,255,.85);
    }

    @media (max-width: 900px) {
      .site-header {
        height: 90px;
        padding: 0 24px;
        gap: 20px;
      }

      .logo {
        width: 72px;
        height: 72px;
      }

      .mobile-menu {
        display: block;
      }

      .nav {
        position: fixed;
        top: 90px;
        right: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 20px 24px;
        background: rgba(0,0,0,.78);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 14px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: .3s ease;
      }

      .nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .hero-top,
      .work-card {
        height: 58vh;
        min-height: 390px;
      }

      .work-content,
      .work-content.align-left {
        left: 28px;
        right: 28px;
        top: 63%;
      }

      .work-title {
        font-size: 34px;
      }
    }