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

  :root {
    --black: #111110;
    --gray: #6b6b67;
    --light-gray: #9a9a96;
    --bg: #ffffff;
    --blue: #3a3ae8;
    --video-bg: #e0dfff;
  }

  html { font-size: 16px; }

  body {
    background: var(--bg);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
  }

  .page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
  }

  /* HEADER */
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 18px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }

  .header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--black);
    flex-shrink: 0;
  }

  .logo svg {
    width: 20px;
    height: auto;
    flex-shrink: 0;
    position: relative;
    top: -1px;
  }

  .logo-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }

  .tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.005em;
  }

  .btn-contact {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: #000000;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: -0.005em;
    padding: 7px 14px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
  }

  .btn-contact span {
    position: relative;
    z-index: 1;
    color: #ffffff;
    transition: none;
  }

  .btn-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1E4B00;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
    animation: colorCycle 3s linear infinite paused;
  }

  .btn-contact:hover::before {
    opacity: 1;
    animation-play-state: running;
  }

  @keyframes colorCycle {
    0%   { background: #1E4B00; }
    50%  { background: #F0C1E4; }
    100% { background: #1E4B00; }
  }

  .btn-contact canvas {
    display: none;
  }

  .copyright {
    font-size: 12px;
    font-weight: 300;
    color: #939393;
    letter-spacing: -0.005em;
    padding: 32px 0 24px;
  }


  .video-wrap {
    width: 100%;
    background: var(--video-bg);
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.15s forwards;
  }

  .video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .video-section {
    width: 100%;
  }

  .work-label {
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    color: #939393;
    letter-spacing: -0.005em;
    margin: 0;
    padding: 0;
    line-height: 1.45;
  }

  /* BELOW VIDEO */
  .below-video {
    display: flex;
    flex-direction: column;
    padding-top: 18px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.25s forwards;
  }

  .below-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin-bottom: 12px;
  }

  .below-bottom {
    width: 100%;
  }

  /* ABOUT */
  .about {
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
  }

  .about-heading {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.45;
    margin: 0 0 14px 0;
  }

  .about-body {
    max-width: 50%;
    width: 100%;
  }

  .about-body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
    color: var(--black);
    letter-spacing: -0.005em;
  }

  .about-body p + p {
    margin-top: 12px;
  }

  /* SOCIAL */
  .social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
  }

  .social a {
    color: var(--black);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
  }

  .social svg {
    display: block;
    fill: currentColor;
  }

  .tagline strong {
    font-weight: 500;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .copyright { margin-top: auto; }
  }

  @media (max-width: 768px) {
    .page {
      padding: 0 16px;
    }

    header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .header-left {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .about-body { max-width: 100%; width: 100%; }

    .social { flex-wrap: wrap; }
  }

  @media (max-width: 480px) {
    .page { padding: 0 14px; }
    .logo-name { font-size: 13px; }
    .tagline { font-size: 13px; }
    .about-heading { font-size: 13px; }
    .about-body p { font-size: 13px; }
    .work-label { font-size: 13px; }
  }
