    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --lav:   #c9b8d8;
      --lav-d: #b8a5cc;
      --lav-l: #d8cce5;
      --black: #111111;
      --white: #ffffff;
      --red:   #e8312a;
      --text:  #1a1a1a;
      --mid:   #555;
      --display: 'Roboto', sans-serif;
      --body:    'Roboto', sans-serif;
    }

    body {
      background: var(--lav);
      color: var(--text);
      font-family: var(--body);
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }

    /* NAV */
    nav {
      position: fixed; top: 0; right: 0;
      padding: 1rem 1.5rem;
      z-index: 100;
    }
    .nav-logo-small {
      font-family: var(--display);
      font-size: 1rem;
      color: var(--white);
      line-height: 1.1;
      text-align: right;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .nav-logo-small.on { opacity: 1; pointer-events: auto; }

    /* HERO */
    #hero {
      min-height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 2rem 2rem;
      gap: 0.5rem;
    }

    .reel-wrap {
      width: min(700px, 90vw);
    }
    .reel-box {
      position: relative;
      padding-bottom: 56.25%;
      background: #1a1a1a;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    }
    .reel-box iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%; border: none;
    }
    .reel-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.75rem; cursor: pointer;
    }
    .reel-placeholder:hover .play-circle { transform: scale(1.1); }
    .play-circle {
      width: 60px; height: 60px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s;
    }
    .reel-label {
      font-size: 0.78rem;
      color: #777;
      letter-spacing: 0.06em;
    }

    .hero-logo { text-align: center; }
    .logo-main {
      font-family: var(--display);
      font-size: clamp(3.5rem, 11vw, 7rem);
      line-height: 0.9;
      letter-spacing: -0.01em;
      color: var(--text);
      display: inline-flex;
      align-items: flex-start;
      gap: 0;
    }
    .red-dot {
      display: inline-block;
      width: 0.16em; height: 0.16em;
      background: var(--red);
      border-radius: 50%;
      margin-top: 0.12em;
      flex-shrink: 0;
    }
    .logo-tagline {
      font-family: var(--body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      margin-top: 0.4rem;
      color: var(--text);
    }

    /* WHAT WE DO */
    #what {
      padding: 3rem 2rem 4rem;
      text-align: center;
      background: var(--lav);
    }
    .sec-label {
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 3rem;
    }
    .services {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      max-width: 860px;
      margin: 0 auto;
    }
    .svc {
      display: flex; flex-direction: column;
      align-items: center; gap: 0.8rem;
      width: 155px;
    }
    .svc-circle {
      width: 138px; height: 138px;
      border-radius: 50%; overflow: hidden;
      box-shadow: 0 4px 18px rgba(0,0,0,0.14);
      transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
    }
    .svc-circle:hover { transform: scale(1.07) rotate(-2deg); }
    .svc-circle svg { display: block; width: 100%; height: 100%; }
    .svc-name { font-weight: 700; font-size: 0.9rem; }

    /* ABOUT */
    #about {
      padding: 3rem 4rem 5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 960px;
      margin: 0 auto;
      align-items: center;
    }
    .about-logo-big {
      font-family: var(--display);
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 0.95;
      letter-spacing: -0.01em;
      color: var(--white);
      display: inline-block;
    }
    .about-logo-big .rd {
      display: inline-block;
      width: 0.18em; height: 0.18em;
      background: var(--red);
      border-radius: 50%;
      vertical-align: top;
      margin-top: 0.1em;
    }
    .about-copy h2 {
      font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .about-copy p {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--mid);
      max-width: 440px;
    }

    /* FEATURED PROJECTS */
    #projects {
      background: var(--black);
      color: var(--white);
      padding: 5rem 2rem 6rem;
      text-align: center;
    }
    #projects .sec-label { color: var(--white); }
    .proj-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .proj-card { text-align: center; }
    .proj-thumb {
      width: 100%;
      aspect-ratio: 4/3;
      display: block;
      margin-bottom: 0.85rem;
      transition: transform 0.3s ease, filter 0.3s ease;
      overflow: hidden;
    }
    .proj-thumb svg { width: 100%; height: 100%; display: block; }
    .proj-card:hover .proj-thumb { transform: scale(1.03); }
    .proj-title {
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: underline;
      text-underline-offset: 3px;
      margin-bottom: 0.35rem;
      transition: color 0.2s;
    }
    .proj-card:hover .proj-title { color: var(--lav); }
    .proj-desc { font-size: 0.78rem; color: #888; line-height: 1.55; }

    /* IN DEV */
    #indev {
      background: var(--lav);
      padding: 5rem 2rem 3rem;
      text-align: center;
    }
    .dev-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      max-width: 860px;
      margin: 0 auto 4rem;
    }
    .dev-card { width: 155px; text-align: center; }
    .dev-circle {
      width: 128px; height: 128px;
      border-radius: 50%; overflow: hidden;
      margin: 0 auto 0.75rem;
      box-shadow: 0 4px 18px rgba(0,0,0,0.14);
      transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
    }
    .dev-circle:hover { transform: scale(1.09); }
    .dev-circle svg { display: block; width: 100%; height: 100%; }
    .dev-title {
      font-weight: 700; font-size: 0.85rem;
      text-decoration: underline;
      text-underline-offset: 3px;
      margin-bottom: 0.35rem;
      cursor: default;
    }
    .dev-title:hover { color: #5a2880; }
    .dev-desc { font-size: 0.75rem; color: #555; line-height: 1.5; }

    /* FOOTER */
    footer {
      background: var(--lav);
      border-top: 1px solid var(--lav-d);
      padding: 1.75rem 2rem;
      text-align: center;
      font-size: 0.82rem;
      color: var(--mid);
    }
    footer a { font-weight: 700; color: var(--text); }
    footer a:hover { text-decoration: underline; }

    /* REVEAL */
    .rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .rv.in { opacity: 1; transform: none; }

    /* RESPONSIVE */
    @media (max-width: 680px) {
      #about { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; text-align: center; }
      .proj-grid { grid-template-columns: 1fr; max-width: 340px; }
    }
	  
  .svc-circle video {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
   }