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


    :root {
      --white: #ffffff;
      --black: #0d0d0d;
      --mid:   #888;
      --lt:    #bbb;
      --rule:  #e2e2e2;
    }


    html { scroll-behavior: smooth; }


    body {
      background: var(--white);
      color: var(--black);
      font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      cursor: none;
      -webkit-font-smoothing: antialiased;
    }


    #cur {
      position: fixed; top: 0; left: 0;
      z-index: 9999; pointer-events: none;
    }


    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--black);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 32px;
      height: 40px;
    }
    .nav-id {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--mid);
      text-decoration: none;
      cursor: none;
      transition: color 0.1s;
    }
    .nav-links a:hover { color: var(--black); }
    .nav-meta {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--lt);
    }



    .hero {
      padding-top: 40px;
      opacity: 0;
      animation: up 0.9s 0.1s ease forwards;
      align-text: center;
    }


    .hero-tagline {
      font-family: 'DM Serif Display';
      font-weight: 700;
      font-size: clamp(72px, 13vw, 190px);
      line-height: 0.88;
      letter-spacing: -0.03em;
      color: var(--black);
      padding: 32px 28px 0;
    }

    .hero-tagline .other {
      font-family: 'DM Serif Display', Arial, Helvetica, sans-serif;
      font-weight: 100;
      font-size: clamp(50px, 10vw, 190px);
      letter-spacing: -0.01em;
    }
    .hero-tagline .ital {
      font-family: 'DM Serif Display', sans-serif;
      font-style: italic;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .container {
      display: flex;
      align-items: center;
    }
    


    /* Address block below — unchanged from previous */
    .hero-address {
      padding: 40px 32px 0;
      display: grid;
      grid-template-columns: 200px 1fr 1fr;
      gap: 0 48px;
    }
    .addr-block {
      font-size: 10.5px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--black);
    }
    .addr-label {
      font-weight: 500;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      display: block;
      margin-bottom: 6px;
    }


    /* ── Section rule ── */
    .section-rule {
      margin: 52px 32px 0;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
      opacity: 0;
      animation: up 0.5s 0.4s ease forwards;
    }
    .sr-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .sr-line { height: 1px; background: var(--black); }
    .sr-count {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: var(--mid);
    }


    /* ══════════════════════════════════
       WAKA WAKA GRID
       — N°001 label above image
       — image fills a fixed height box
       — title + meta sit below
       Asymmetric placement: items don't
       all start at the same vertical —
       col 2 & 3 drop slightly.
    ══════════════════════════════════ */
    .grid {
      padding: 40px 32px 96px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);

      column-gap: 24px;
      row-gap: 0;
    }


    .card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
  
      opacity: 0;
      /* Waka Waka stagger */
    }
    .card:nth-child(1) { animation: up 0.5s 0.50s ease forwards; padding-top: 0;   padding-bottom: 56px; }
    .card:nth-child(2) { animation: up 0.5s 0.58s ease forwards; padding-top: 48px; padding-bottom: 56px; }
    .card:nth-child(3) { animation: up 0.5s 0.66s ease forwards; padding-top: 24px; padding-bottom: 56px; }
    .card:nth-child(4) { animation: up 0.5s 0.74s ease forwards; padding-top: 0;   padding-bottom: 0; }
    .card:nth-child(5) { animation: up 0.5s 0.82s ease forwards; padding-top: 64px; padding-bottom: 0; }


    /* Catalogue number — sits above image, tiny */
    .card-no {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.2em;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .card-title{
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      display: flex;
      align-items: center;
      gap: 10px;
    }


    /* Image zone — SVG architectural sketch stands in for photo */
    .card-img {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      position: relative;
      background: #f5f5f5;
    }
    .card-img svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    /* On hover, image dims slightly */
    .card:hover .card-img { filter: brightness(0.93); }
    .card-img, .card-img svg { transition: filter 0.3s; }


    /* ── SPECS — same as before ── */
    .specs {
      border-top: 2px solid var(--black);
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      opacity: 0;
      animation: up 0.6s 0.95s ease forwards;
    }
    .spec-cell {
      padding: 36px 32px;
      border-right: 1px solid var(--rule);
    }
    .spec-cell:last-child { border-right: none; }
    .spec-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid);
      display: block;
      margin-bottom: 14px;
    }
    .spec-body {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--black);
    }
    .spec-body strong { font-weight: 500; }
    .spec-links { display: flex; flex-direction: column; gap: 7px; }
    .spec-links a {
      font-size: 11px;
      font-weight: 300;
      color: var(--black);
      text-decoration: none;
      cursor: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--rule);
      padding-bottom: 7px;
      transition: border-color 0.15s;
    }
    .spec-links a:last-child { border-bottom: none; padding-bottom: 0; }
    .spec-links a:hover { border-color: var(--black); }
    .spec-links a::after { content: '↗'; font-size: 10px; color: var(--lt); }


    /* ── SVG sketch colours ── */
    .sk  { stroke: rgba(13,13,13,0.45); stroke-width: 1;   fill: none; }
    .skl { stroke: rgba(13,13,13,0.18); stroke-width: 0.8; fill: none; }
    .skf { fill: rgba(13,13,13,0.06);   stroke: none; }


    /* ── ANIMATION ── */
    @keyframes up {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }


    /* ── MOBILE ── */
    @media (max-width: 740px) {
      .hero-tagline { font-size: clamp(52px, 14vw, 80px); padding: 24px 20px 0; }
      .hero-address { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px 0; }
      .section-rule { margin: 40px 20px 0; }
      .grid { grid-template-columns: 1fr 1fr; padding: 32px 20px 72px; column-gap: 16px; }
      .card:nth-child(1),
      .card:nth-child(2),
      .card:nth-child(3),
      .card:nth-child(4),
      .card:nth-child(5) { padding-top: 0; padding-bottom: 32px; }
      .specs { grid-template-columns: 1fr 1fr; }
      .spec-cell { border-bottom: 1px solid var(--rule); padding: 24px 20px; }
      .spec-cell:nth-child(odd) { border-right: 1px solid var(--rule); }
      .spec-cell:nth-child(even) { border-right: none; }
      nav { padding: 0 20px; }
      .nav-meta { display: none; }
      footer { padding: 12px 20px; flex-direction: column; gap: 4px; align-items: flex-start; }
      body { cursor: auto; }
      #cur { display: none; }
    }