*, *::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 Condensed', 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; }
    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: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 5rem 2rem 3rem;
      gap: 2rem;
    }

    .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: 5rem 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,
  .dev-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ════════════════════════════
     CASE STUDY PAGE
     ════════════════════════════ */

  /* Nav override for case study (full-width bar instead of top-right logo) */
  nav.cs-nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(201,184,216,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  nav.cs-nav .nav-logo-cs {
    font-family: var(--display);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--text);
    display: inline-flex;
    align-items: flex-start;
    opacity: 1;
    pointer-events: auto;
  }
  nav.cs-nav .nav-logo-cs .rd {
    display: inline-block;
    width: 0.15em; height: 0.15em;
    background: var(--red);
    border-radius: 50%;
    margin-top: 0.1em;
    flex-shrink: 0;
  }
  nav.cs-nav .nav-back {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
  }
  nav.cs-nav .nav-back::before { content: '←'; font-size: 1rem; }
  nav.cs-nav .nav-back:hover { color: var(--text); }

  /* Hero */
  #cs-hero {
    padding: 7rem 2rem 4rem;
    max-width: 860px;
    margin: 0 auto;
  }
  .cs-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  .cs-tag {
    background: var(--black);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
  }
  .cs-tag.red { background: var(--red); }
  .cs-year {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mid);
  }
  .cs-title {
    font-family: var(--display);
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
  }
  .cs-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.65;
    color: var(--mid);
    max-width: 560px;
  }

  /* Hero media (opening image / video / embed) */
  .cs-hero-media {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
  }

  /* Reusable 16:9 wrapper — img, iframe, video all fill it */
  .media-16-9 {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,0,0,0.2);
  }
  .media-16-9 iframe,
  .media-16-9 img,
  .media-16-9 video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: none;
    object-fit: cover;
    display: block;
  }

  /* Content column */
  .cs-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Divider */
  .cs-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.12);
    margin: 4rem 0;
  }

  /* Block label (small uppercase eyebrow above headings) */
  .block-label {
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1rem;
  }

  /* Stats row */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 4rem;
  }
  .stat-cell {
    background: var(--lav-l);
    padding: 1.5rem 1.75rem;
  }
  .stat-cell-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.4rem;
  }
  .stat-cell-value {
    font-family: var(--display);
    font-size: 1.4rem;
    line-height: 1.1;
  }

  /* Text block */
  .text-block { margin-bottom: 3rem; }
  .text-block h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 0.85rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .text-block p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--mid);
    max-width: 640px;
  }
  .text-block p + p { margin-top: 1rem; }

  /* Single image */
  .img-block { margin-bottom: 3rem; }
  .img-block img,
  .img-block video {
    width: 100%;
    border-radius: 6px;
    display: block;
    box-shadow: 0 6px 30px rgba(0,0,0,0.13);
  }

  /* 2-up grid */
  .img-2up {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .img-2up img,
  .img-2up video {
    width: 100%;
    border-radius: 6px;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }

  /* 3-up grid */
  .img-3up {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .img-3up img,
  .img-3up video {
    width: 100%;
    border-radius: 6px;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }

  /* Shared caption style */
  .img-caption,
  .video-caption {
    font-size: 0.78rem;
    color: var(--mid);
    margin-top: 0.6rem;
    font-style: italic;
  }

  /* Video embed block */
  .video-block { margin-bottom: 3rem; }
  .video-block .media-16-9 {
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  }

  /* Pull quote */
  .pull-quote {
    background: var(--black);
    color: var(--white);
    padding: 3rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
  }
  .pull-quote::before {
    content: '"';
    font-family: var(--display);
    font-size: 10rem;
    color: var(--red);
    position: absolute;
    top: -1.5rem; left: 1.5rem;
    line-height: 1;
    opacity: 0.4;
    pointer-events: none;
  }
  .pull-quote blockquote {
    font-family: var(--display);
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
  }
  .pull-quote cite {
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 700;
    color: var(--lav);
    letter-spacing: 0.05em;
  }

  /* Wide image (bleeds past content column) */
  .img-wide {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
  }
  .img-wide img,
  .img-wide video {
    width: 100%;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  }
  .img-wide .img-caption {
    max-width: 860px;
    margin: 0.6rem auto 0;
  }

  /* Next project footer */
  .next-project {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 6rem;
  }
  .next-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1rem;
  }
  .next-title {
    font-family: var(--display);
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    transition: color 0.2s;
  }
  .next-link:hover .next-title { color: var(--lav); }
  .next-btn {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 3px;
    transition: opacity 0.2s;
  }
  .next-btn:hover { opacity: 0.85; }

  /* Case study responsive overrides */
  @media (max-width: 640px) {
    .stats-row    { grid-template-columns: 1fr; }
    .img-2up      { grid-template-columns: 1fr; }
    .img-3up      { grid-template-columns: 1fr 1fr; }
    .pull-quote   { padding: 2.5rem 1.75rem; }
    .pull-quote::before { font-size: 6rem; }
    .cs-hero-media { padding: 0 1rem; }
    .cs-content    { padding: 0 1.25rem; }
  }