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

    :root {
      --green-dark: #5da92f;
      --green-light: #9bd46a;
      --ink: #2a2420;
      --ink-mid: #5a5048;
      --ink-light: #9a8e82;
      --accent: #8b6f4e;
      --paper-dark: #ede7d8;
      --sans: 'Outfit', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--green-light);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 500;
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: linear-gradient(180deg, var(--green-dark), var(--green-light));
      z-index: -1;
      pointer-events: none;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      background: transparent;
    }

    .nav-logo {
      font-size: 1.1rem;
      font-weight: 500;
      color: #ffffff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #ffffff;
      text-decoration: none;
      transition: opacity 0.2s;
      opacity: 0.75;
    }

    .nav-links a:hover { opacity: 1; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 2rem;
      position: relative;
    }

    .hero-logo {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: clamp(300px, 60vw, 900px);
      height: auto;
      z-index: 0;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-name {
      font-family: var(--sans);
      font-size: clamp(4rem, 13vw, 11rem);
      font-weight: 500;
      line-height: 1.0;
      letter-spacing: -0.04em;
      text-transform: lowercase;
      margin-bottom: 1rem;
      padding: 0.1em 0.15em 0.3em;
      color: #ffffff;
    }

    .hero-discipline {
      font-family: var(--sans);
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #111e0b;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .hero-discipline .sep { color: #ffffff; }

    .hero-clients {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 30%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 1;
    }

    .clients-label {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(17,30,11,0.6);
      margin-bottom: 1rem;
    }

    .clients-list {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(17,30,11,0.8);
      line-height: 2.2;
    }

    /* WORK */
    #work { padding: 6rem 3rem; }

    .section-header { margin-bottom: 3rem; text-align: center; }

    .section-title {
      font-family: var(--sans);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(17,30,11,0.6);
    }

    /* WORK GRID */
    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .project-card { text-decoration: none; color: inherit; display: block; }

    .project-image {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--paper-dark);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }

    .placeholder-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-light);
      position: relative;
      z-index: 1;
    }

    .project-image-overlay {
      position: absolute;
      inset: 0;
      background: rgba(42,36,32,0);
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      transition: background 0.3s;
      z-index: 2;
    }

    .project-card:hover .project-image-overlay { background: rgba(42,36,32,0.75); }

    .project-overlay-text {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
      color: #ffffff;
    }

    .project-card:hover .project-overlay-text { opacity: 1; transform: translateY(0); }

    .project-overlay-client {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.25rem;
    }

    .project-overlay-title { font-family: var(--sans); font-size: 1.2rem; font-weight: 500; }

    /* CONTACT */
    #contact { padding: 6rem 3rem; text-align: center; }

    .contact-inner { max-width: 640px; margin: 0 auto; }

    .contact-inner p {
      font-size: 1rem;
      color: #111e0b;
      margin-bottom: 2.5rem;
      line-height: 1.85;
      font-weight: 300;
    }

    .contact-email {
      font-family: var(--sans);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 400;
      color: var(--ink);
      text-decoration: none;
      display: inline-block;
      transition: color 0.2s;
    }

    .contact-email:hover { color: var(--accent); }

    .contact-links { display: flex; gap: 2rem; margin-top: 3rem; justify-content: center; }

    .contact-link {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--ink-mid);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-link:hover { color: var(--ink); }

    /* FOOTER */
    footer {
      padding: 3rem;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    footer p {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #40771d;
    }

    /* MODAL */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      align-items: flex-start;
      justify-content: center;
      padding: 40px;
      overflow-y: auto;
    }

    .modal-overlay.active { display: flex; }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17,30,11,0.85);
      backdrop-filter: blur(6px);
    }

    .modal-close {
      position: fixed;
      top: 20px;
      right: 20px;
      transform: translate(25%, -25%);
      background: none;
      border: none;
      cursor: pointer;
      color: #ffffff;
      opacity: 0.8;
      transition: opacity 0.2s;
      z-index: 300;
    }

    .modal-close:hover { opacity: 1; }

    .modal-box {
      position: relative;
      z-index: 1;
      background: #ffffff;
      border-radius: 16px;
      width: 100%;
      max-width: 100%;
      overflow-y: auto;
    }

    .modal-header {
      padding: 2.5rem 2.5rem 0.25rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .modal-category {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #40771d;
      margin-bottom: 0.5rem;
    }

    .modal-client {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: 0.75rem;
    }

    .modal-title {
      font-family: var(--sans);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }

    /* MOSAIC */
    .mosaic { padding: 0 2.5rem 2.5rem; }

    .mosaic > *:last-child { margin-bottom: 0; }

    .mosaic-copy { max-width: 640px; margin: 0 0 2.5rem; }

    .mosaic-copy-label {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #40771d;
      margin-bottom: 0.75rem;
    }

    .mosaic-copy-text {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--ink-mid);
      line-height: 1.8;
    }

    .mosaic-full { margin-bottom: 1.5rem; }

    .mosaic-full img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }

    .mosaic-full video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .mosaic-video-player { margin-bottom: 1.5rem; }

    .mosaic-video-player video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .mosaic-video-2col {
      display: grid;
      grid-template-columns: 3.6fr 1fr;
      gap: 1.5rem;
      align-items: stretch;
      margin-bottom: 60px;
    }

    .mosaic-video-2col video {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 8px;
      object-fit: fill;
    }

    .mosaic-video-2col-equal {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .mosaic-video-2col-equal video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .mosaic-video-3col {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .mosaic-video-3col video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .mosaic-2col {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      align-items: stretch;
    }

    .mosaic-2col img {
      height: 400px;
      display: block;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }

    .mosaic-3col {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .mosaic-3col img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }

    /* ANIMATIONS */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .work-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      .mosaic-video-2col { grid-template-columns: 1fr; }
      .mosaic-video-2col-equal { grid-template-columns: 1fr; }
      .mosaic-video-3col { grid-template-columns: 1fr; }
      .mosaic-2col { flex-direction: column; }
      .mosaic-2col img { width: 100% !important; height: auto !important; }
      .mosaic-3col { grid-template-columns: 1fr; }
    }

    @media (max-width: 900px) {
      nav { padding: 1.25rem 1.5rem; }
      .hero { padding: 0 1rem; }
      #work, #contact { padding: 5rem 1.5rem; }
      .work-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
    }