/* CSS FROM INDEX */

    :root {
      --ink: #1a1d21;
      --ink-soft: #4a4e54;
      --paper: #f0e9e9;
      --paper-raised: #f0f1f3;
      --line: #e1e2e4;
      --accent: #6b7f5e;
      --accent-soft: #b3c1a8;
      --muted: #7a7e85;

      --display: "Montserrat", sans-serif;
      --body: "Montserrat", sans-serif;
      --mono: "Montserrat", sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body, a, button, .project-card {
      cursor: none !important;
    }
    .custom-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 32px;
      height: 32px;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease-out, color 0.2s;
      color: var(--ink);
    }
    .custom-cursor.hover {
      transform: translate(-50%, -50%) scale(1.5) rotate(90deg);
      color: var(--accent);
    }
    .custom-cursor img {
      width: 100%;
      height: 100%;
      display: block;
    }
    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection {
      background: var(--accent);
      color: var(--paper);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ============ GRAIN OVERLAY ============ */
    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 200;
      opacity: 0.05;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ============ HEADER ============ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--paper);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      
    }

    .header-inner {
      display: flex;
      align-items: center;
      font-weight: 400;
      justify-content: space-between;
      padding: 18px 48px;
      width: 100%;
    }

    .logo img {
      display: block;
      height: 32px;
      width: auto;
    }

    nav {
      display: flex;
      gap: 32px;
      font-family: var(--mono);
      font-size: 20px;
      font-weight: 600;

      letter-spacing: 0.02em;
    }

    nav a {
      position: relative;
      padding-bottom: 2px;
      color: var(--ink-soft);
      transition: color 0.2s ease;
    }

    nav a:hover {
      color: var(--ink);
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -3px;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    .project-grid {
      max-width: 1500px;
      margin: 100px auto;
      padding: 48px 48px 80px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    /* ============ PROJECT CARD ============ */
    .project-card {
      display: block;
      border-radius: 10px;
      overflow: hidden;


      transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-6px);
    }

    /* Card thumbnail */
    .card-thumb {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .project-card:hover .card-thumb img {
      transform: scale(1.04);
    }

    /* Grain on thumbnail */
    .card-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
    }

    /* Number badge */
    .card-number {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.8);
      z-index: 2;
    }

    /* Arrow badge */
    .card-arrow {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translate(-8px, 8px);
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: 2;
    }

    .project-card:hover .card-arrow {
      opacity: 1;
      transform: translate(0, 0);
    }

    .card-arrow svg {
      width: 14px;
      height: 14px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }

    /* Card body */
    .card-body {
      padding: 10px 16px 12px;
    }

    .card-category {
      font-family: var(--mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .card-title {
      font-family: var(--display);
      font-weight: 500;
      font-size: 1.3rem;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 0;
      text-align: center;
    }

    .card-desc {
      font-size: 0.82rem;
      color: var(--ink-soft);
      line-height: 1.55;
      max-width: 520px;
      margin-bottom: 16px;
    }

    .card-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .card-tag {
      font-family: var(--mono);
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--ink-soft);
      border: 1px solid var(--line);
      padding: 3px 8px;
      border-radius: 3px;
      transition:
        border-color 0.2s ease,
        color 0.2s ease;
    }

    .project-card:hover .card-tag {
      border-color: var(--accent-soft);
      color: var(--accent);
    }

    /* ============ STAGGER ANIMATIONS ============ */
    .project-card {
      opacity: 0;
      transform: translateY(28px);
      animation: cardIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    .project-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .project-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .project-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    @keyframes cardIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ============ FOOTER ============ */
    footer {
      max-width: 1800px;
      margin: 0 auto;
      padding: 24px 24px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--mono);
      font-size: 11.5px;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 12px;
    }

    footer a {
      color: var(--ink-soft);
      transition: color 0.2s ease;
    }

    footer a:hover {
      color: var(--accent);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 900px) {
      .header-inner {
        padding: 14px 20px;
      }

      nav {
        gap: 18px;
      }

      .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 20px 60px;
      }

      footer {
        padding: 20px 16px 32px;
      }
    }

    @media (max-width: 560px) {
      .project-grid {
        padding: 24px 16px 48px;
        gap: 16px;
      }

      .card-body {
        padding: 16px 18px 20px;
      }

      .card-title {
        font-size: 1.3rem;
      }

      .card-desc {
        font-size: 0.85rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .project-card {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }
  
/* CSS FROM PROJECTS */

      /* ============ DESIGN TOKENS ============ */
      :root {
        --ink: #1a1d21;
        --ink-soft: #4a4e54;
        --paper: #f0e9e9;
        --paper-raised: #f0f1f3;
        --line: #e1e2e4;
        --accent: #6b7f5e;
        --accent-soft: #b3c1a8;
        --accent-light: #dde6d6;
        --muted: #7a7e85;

        --display: "Montserrat", sans-serif;
        --body: "Montserrat", sans-serif;
        --mono: "Montserrat", sans-serif;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body, a, button {
        cursor: none !important;
      }
      .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease-out, color 0.2s;
        color: var(--ink);
      }
      .custom-cursor.hover {
        transform: translate(-50%, -50%) scale(1.5) rotate(90deg);
        color: var(--accent);
      }
      .custom-cursor img {
        width: 100%;
        height: 100%;
        display: block;
      }
      body {
        background: var(--paper);
        color: var(--ink);
        font-family: var(--body);
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      ::selection {
        background: var(--accent);
        color: var(--paper);
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      a:focus-visible,
      button:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
      }

      img {
        max-width: 100%;
        display: block;
      }

      /* ============ GRAIN ============ */
      .grain {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 200;
        opacity: 0.05;
        mix-blend-mode: multiply;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      }

      /* ============ HEADER ============ */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--paper);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 48px;
        width: 100%;
      }

      .logo img {
        display: block;
        height: 32px;
        width: auto;
      }

      nav {
        display: flex;
        gap: 32px;
        font-family: var(--mono);
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.02em;
      }

      nav a {
        position: relative;
        padding-bottom: 2px;
        color: var(--ink-soft);
        transition: color 0.2s ease;
      }

      nav a:hover {
        color: var(--ink);
      }

      nav a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -3px;
        height: 1px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s ease;
      }

      nav a:hover::after {
        transform: scaleX(1);
      }

      /* ============ PAGE WRAP ============ */
      .page-wrap {
        max-width: 1600px;
        margin: 60px auto;
        padding: 0 48px;
      }

      /* ============ PROJECT NAVIGATION ============ */
      .project-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 80px;
        padding-top: 40px;
        border-top: 1px solid var(--line);
      }

      .project-navigation a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--mono);
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--muted);
        transition:
          color 0.2s ease,
          gap 0.2s ease;
        letter-spacing: 0.03em;
      }

      .project-navigation a:hover {
        color: var(--accent);
        gap: 12px;
      }

      .project-navigation svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        transition: transform 0.2s ease;
      }

      .nav-prev:hover svg {
        transform: translateX(-4px);
      }

      .nav-next:hover svg {
        transform: translateX(4px);
      }

      /* ============ HERO ============ */
      .case-hero {
        padding: 48px 0 0;
      }

      .project-label {
        font-family: var(--mono);
        font-size: 12px;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
      }

      .project-label::before {
        content: "";
        width: 32px;
        height: 1px;
        background: var(--accent);
      }

      .case-hero h1 {
        font-family: var(--display);
        font-weight: 500;
        font-size: clamp(3rem, 7vw, 5rem);
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: 24px;
      }

      .case-hero h1 span {
        color: var(--accent);
      }

      .hero-description {
        color: var(--ink-soft);
        font-size: 1.15rem;

        margin-bottom: 30px;
        line-height: 1.65;
      }

      .project-meta {
        display: flex;
        gap: 48px;
        padding: 28px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        margin-bottom: 56px;
        flex-wrap: wrap;
      }

      .project-meta div {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .project-meta small {
        font-family: var(--mono);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
      }

      .project-meta strong {
        font-weight: 500;
        font-size: 14px;
        color: var(--ink);
      }

      /* ============ HERO IMAGE ============ */
      .hero-image {
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        margin-bottom: 80px;
        box-shadow: 0 24px 80px rgba(21, 24, 27, 0.12);
      }

      .hero-image img {
        width: 100%;
        height: auto;
      }

      .hero-image::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        border: 1px solid rgba(21, 24, 27, 0.06);
        pointer-events: none;
      }

      /* ============ CASE SECTION ============ */
      .case-section {
        margin-bottom: 80px;
      }

      .section-number {
        font-family: var(--display);
        font-weight: 600;
        font-size: 4rem;
        color: var(--line);
        line-height: 1;
        margin-bottom: 16px;
      }

      .eyebrow {
        font-family: var(--mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
      }

      .eyebrow::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--accent);
      }

      .section-content h2 {
        font-family: var(--display);
        font-weight: 500;
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 24px;
        max-width: 700px;
      }

      .section-content > p,
      .section-intro {
        color: var(--ink-soft);
        font-size: 1rem;
        line-height: 1.7;
        max-width: 620px;
        margin-bottom: 18px;
      }

      /* ============ HIGHLIGHT QUOTE ============ */
      .highlight-quote {
        margin: 80px 0;
        padding: 48px 56px;
        background: var(--ink);
        color: var(--paper);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
      }

      .highlight-quote::before {
        content: "\201C";
        position: absolute;
        top: -10px;
        left: 30px;
        font-family: var(--display);
        font-size: 12rem;
        color: rgba(236, 234, 228, 0.04);
        line-height: 1;
        pointer-events: none;
      }

      .highlight-quote blockquote {
        font-family: var(--display);
        font-style: italic;
        font-weight: 300;
        font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        line-height: 1.45;
        max-width: 680px;
        position: relative;
        z-index: 1;
      }

      .highlight-quote .quote-author {
        margin-top: 20px;
        font-family: var(--mono);
        font-style: normal;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: rgba(236, 234, 228, 0.5);
      }

      /* ============ PERSONAS GRID ============ */
      .personas-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 32px;
      }

      .persona-card {
        padding: 28px 24px;
        background: var(--paper-raised);
        border: 1px solid var(--line);
        border-radius: 10px;
        transition:
          transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
          box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
          border-color 0.3s ease;
      }

      .persona-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(21, 24, 27, 0.08);
        border-color: var(--accent-soft);
      }

      .persona-card.featured {
        background: var(--ink);
        color: var(--paper);
        border-color: transparent;
      }

      .persona-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--accent);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--display);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 16px;
      }

      .persona-card.featured .persona-avatar {
        background: var(--paper);
        color: var(--ink);
      }

      .persona-card h3 {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.2rem;
        margin-bottom: 4px;
      }

      .persona-role {
        font-family: var(--mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--muted);
        display: block;
        margin-bottom: 14px;
      }

      .persona-card.featured .persona-role {
        color: rgba(236, 234, 228, 0.5);
      }

      .persona-card p {
        font-size: 0.88rem;
        color: var(--ink-soft);
        line-height: 1.6;
        margin-bottom: 18px;
      }

      .persona-card.featured p {
        color: rgba(236, 234, 228, 0.7);
      }

      .persona-data {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid var(--line);
      }

      .persona-card.featured .persona-data {
        border-color: rgba(236, 234, 228, 0.1);
      }

      .persona-data small {
        font-family: var(--mono);
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--muted);
        display: block;
        margin-bottom: 4px;
      }

      .persona-card.featured .persona-data small {
        color: rgba(236, 234, 228, 0.4);
      }

      .persona-data strong {
        font-size: 13px;
        font-weight: 500;
      }

      /* ============ DESIGN BLOCKS ============ */
      .design-block {
        margin-top: 40px;
        padding: 32px;
        background: var(--paper-raised);
        border: 1px solid var(--line);
        border-radius: 10px;
      }

      .design-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
      }

      .design-title span {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--accent);
        letter-spacing: 0.04em;
      }

      .design-title h3 {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.1rem;
      }

      .color-palette {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }

      .color-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 100px;
      }

      .color-item div:first-child {
        width: 100%;
        height: 64px;
        border-radius: 8px;
      }

      .color.orange {
        background: #f97316;
      }

      .color-item-dark {
        background: #0f172a;
        width: 100%;
        height: 64px;
        border-radius: 8px;
      }

      .color.light {
        background: #f8fafc;
        border: 1px solid var(--line);
      }

      .color.white {
        background: #fff;
        border: 1px solid var(--line);
      }

      .color-item strong {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.02em;
      }

      .color-item span {
        font-size: 12px;
        color: var(--muted);
      }

      .type-showcase,
      .logo-showcase {
        display: flex;
        gap: 32px;
        align-items: center;
      }

      .type-label {
        font-family: var(--display);
        font-size: 4rem;
        font-weight: 300;
        color: var(--accent);
        line-height: 1;
        flex-shrink: 0;
      }

      .type-showcase h3,
      .logo-showcase h3 {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        margin-bottom: 8px;
      }

      .type-showcase p,
      .logo-showcase p {
        font-size: 0.88rem;
        color: var(--ink-soft);
        line-height: 1.6;
        max-width: 400px;
      }

      .logo-mark {
        position: relative;
        width: 72px;
        height: 72px;
        flex-shrink: 0;
      }

      .ring {
        position: absolute;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 3px solid var(--accent);
      }

      .ring-one {
        top: 4px;
        left: 0;
      }

      .ring-two {
        bottom: 4px;
        right: 0;
        border-color: var(--ink);
      }

      /* ============ FLOW STEPS ============ */
      .flow {
        display: flex;
        align-items: flex-start;
        gap: 0;
        margin-top: 32px;
      }

      .flow-step {
        flex: 1;
        padding: 24px;
        background: var(--paper-raised);
        border: 1px solid var(--line);
        border-radius: 10px;
        transition:
          transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
          box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .flow-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(21, 24, 27, 0.08);
      }

      .flow-step span {
        font-family: var(--display);
        font-weight: 600;
        font-size: 1.6rem;
        color: var(--accent);
        display: block;
        margin-bottom: 10px;
        line-height: 1;
      }

      .flow-step h3 {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        margin-bottom: 8px;
      }

      .flow-step p {
        font-size: 0.85rem;
        color: var(--ink-soft);
        line-height: 1.55;
      }

      .flow-line {
        width: 32px;
        height: 2px;
        background: var(--line);
        align-self: center;
        flex-shrink: 0;
      }

      /* ============ FEATURES GRID ============ */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 32px;
      }

      .feature-card {
        padding: 28px 24px;
        background: var(--paper-raised);
        border: 1px solid var(--line);
        border-radius: 10px;
        transition:
          transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
          box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
          border-color 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(21, 24, 27, 0.08);
        border-color: var(--accent-soft);
      }

      .feature-card span {
        font-family: var(--display);
        font-weight: 600;
        font-size: 1.6rem;
        color: var(--accent);
        display: block;
        margin-bottom: 12px;
        line-height: 1;
      }

      .feature-card h3 {
        font-family: var(--display);
        font-weight: 500;
        font-size: 1.05rem;
        margin-bottom: 8px;
      }

      .feature-card p {
        font-size: 0.85rem;
        color: var(--ink-soft);
        line-height: 1.55;
      }

      /* ============ FINAL STATEMENT ============ */
      .final-statement {
        margin-top: 48px;
        padding: 48px;
        background: var(--ink);
        color: var(--paper);
        border-radius: 12px;
        text-align: center;
      }

      .final-statement span {
        font-family: var(--mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent-soft);
        display: block;
        margin-bottom: 16px;
      }

      .final-statement strong {
        font-family: var(--display);
        font-weight: 500;
        font-size: clamp(1.4rem, 3vw, 2rem);
        line-height: 1.3;
        font-style: italic;
      }

      /* ============ FULL IMAGE ============ */
      .full-image {
        margin: 80px 0;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 16px 60px rgba(21, 24, 27, 0.1);
      }

      .full-image img {
        width: 100%;
        height: auto;
      }

      .full-image::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        border: 1px solid rgba(21, 24, 27, 0.06);
        pointer-events: none;
      }

      .full-image figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 28px;
        background: linear-gradient(
          to top,
          rgba(21, 24, 27, 0.7) 0%,
          transparent 100%
        );
        font-family: var(--mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.7);
      }

      /* ============ NEXT PROJECT ============ */
      .next-project {
        margin: 80px 0 0;
        padding: 64px 0;
        border-top: 1px solid var(--line);
        text-align: center;
      }

      .next-label {
        font-family: var(--mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
        margin-bottom: 12px;
      }

      .next-title {
        font-family: var(--display);
        font-weight: 500;
        font-size: clamp(1.8rem, 4vw, 3rem);
        color: var(--ink);
        line-height: 1.1;
        transition: color 0.3s ease;
      }

      .next-project a:hover .next-title {
        color: var(--accent);
      }

      .next-arrow {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto 0;
        transition:
          background 0.3s ease,
          border-color 0.3s ease,
          transform 0.3s ease;
      }

      .next-project a:hover .next-arrow {
        background: var(--accent);
        border-color: var(--accent);
        transform: translateX(4px);
      }

      .next-arrow svg {
        width: 18px;
        height: 18px;
        stroke: var(--ink-soft);
        stroke-width: 2;
        fill: none;
        transition: stroke 0.3s ease;
      }

      .next-project a:hover .next-arrow svg {
        stroke: #fff;
      }

      /* ============ FOOTER ============ */
      footer {
        max-width: 1800px;
        margin: 0 auto;
        padding: 24px 24px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--mono);
        font-size: 11.5px;
        color: var(--muted);
        flex-wrap: wrap;
        gap: 12px;
      }

      footer a {
        color: var(--ink-soft);
        transition: color 0.2s ease;
      }

      footer a:hover {
        color: var(--accent);
      }

      .footer-links {
        display: flex;
        gap: 24px;
      }

      /* ============ ANIMATIONS ============ */
      .fade-in {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
          transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ============ RESPONSIVE ============ */
      @media (max-width: 900px) {
        .header-inner {
          padding: 14px 20px;
        }

        nav {
          gap: 18px;
        }

        .page-wrap {
          padding: 0 24px;
        }

        .personas-grid {
          grid-template-columns: 1fr 1fr;
        }

        .features-grid {
          grid-template-columns: 1fr 1fr;
        }

        .flow {
          flex-direction: column;
          gap: 12px;
        }

        .flow-line {
          width: 2px;
          height: 20px;
          align-self: center;
        }

        .project-meta {
          gap: 28px;
        }

        .highlight-quote {
          padding: 36px 32px;
        }

        .type-showcase,
        .logo-showcase {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
        }
      }

      @media (max-width: 560px) {
        .page-wrap {
          padding: 0 16px;
        }

        .personas-grid {
          grid-template-columns: 1fr;
        }

        .features-grid {
          grid-template-columns: 1fr;
        }

        .color-palette {
          flex-direction: column;
        }

        .project-meta {
          gap: 20px;
        }

        .highlight-quote {
          padding: 28px 24px;
        }

        .design-block {
          padding: 24px 20px;
        }

        footer {
          padding: 20px 16px 32px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .fade-in {
          opacity: 1;
          transform: none;
          transition: none;
        }
      }

      /* ============ PROJECT IMAGE (compact) ============ */
      .project-image {
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        margin-bottom: 60px;
        box-shadow: 0 16px 48px rgba(21, 24, 27, 0.1);
      }

      .project-image img {
        width: 100%;
        height: auto;
        display: block;
      }

      .project-image::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        border: 1px solid rgba(21, 24, 27, 0.06);
        pointer-events: none;
      }

      /* ============ IMAGE PLACEHOLDER ============ */
      .img-placeholder {
        width: 100%;
        aspect-ratio: 16 / 9;
        background: linear-gradient(
          145deg,
          var(--line) 0%,
          var(--accent-soft) 50%,
          var(--accent) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }

      .img-placeholder span {
        display: block;
        width: 100%;
        height: 100%;
        font-family: var(--mono);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.5);
      }

      /* ============ SPLIT IMAGES (double) ============ */
      .split-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 60px;
      }

      .split-images figure {
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 12px 40px rgba(21, 24, 27, 0.08);
      }

      .split-images figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .split-images figure::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        border: 1px solid rgba(21, 24, 27, 0.06);
        pointer-events: none;
      }

      @media (max-width: 768px) {
        .project-image {
          max-width: 100%;
        }

        .hero-image {
          max-width: 100%;
        }

        .split-images {
          grid-template-columns: 1fr;
          max-width: 100%;
          gap: 16px;
        }
      }
    