
    @import url("https://db.onlinewebfonts.com/c/2b2a0e640a6c016b18b8ff6574a4c75b?family=JJannon+Book");

    :root {
      --bg: #efeae2;
      --text: #1a1a1a;
      --muted: #6f6f6f;
    }

    * { box-sizing: border-box; }
    .container {
      width: 1300px;
      height: 1000px;
    }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      transition: background-color 0.6s ease;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 108px;
      padding: 0 40px;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-family: "JJannon Book", "Times New Roman", Times, serif;
      position: sticky;
      top: 0;
      z-index: 1200;
      background: transparent;
    }

    footer {
      text-align: left;
      padding: 40px;
      font-family: Poppins, sans-serif;
      font-size: 13px;
      color: #A08B76;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    nav a {
      margin-left: 24px;
      text-decoration: none;
      color: var(--muted);
      font-family: "JJannon Book", "Times New Roman", Times, serif;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: var(--text);
    }

    .mobile-menu-toggle {
      display: none;
      width: 38px;
      height: 32px;
      border: 0;
      padding: 0;
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      margin-left: auto;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--text);
      transform-origin: center;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mobile-menu-toggle.is-open span:first-child {
      transform: translateY(3.7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:last-child {
      transform: translateY(-3.7px) rotate(-45deg);
    }

    .site-logo {
      color: var(--text);
      text-decoration: none;
      font-family: "JJannon Book", "Times New Roman", Times, serif;
    }

    .site-logo:hover,
    .site-logo:visited,
    .site-logo:focus {
      text-decoration: none;
      color: var(--text);
    }

    .site-logo img {
      display: block;
      width: 55px;
      height: 10px;
      object-fit: contain;
    }

    /* Dropdown Menu Styles */
    .dropdown-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #c9bfae;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .dropdown-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .dropdown-content {
      display: flex;
      height: 100%;
      position: relative;
    }

    .dropdown-image {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .dropdown-image.visible {
      opacity: 1;
    }

    .dropdown-image img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: cover;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }

    .dropdown-list {
      flex: 0 0 600px;
      padding: 120px 80px;
      display: flex;
      flex-direction: column;
    }

    .dropdown-list h2 {
      font-size: 13px;
      letter-spacing: 0.12em;
      font-weight: 400;
      margin-bottom: 60px;
      color: #6f6f6f;
      font-family: "JJannon Book", "Times New Roman", Times, serif;
    }

    .dropdown-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .dropdown-list li {
      padding: 24px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      transition: all 0.3s ease;
    }

    .dropdown-list li:hover .project-name {
      color: #1a1a1a;
    }

    .dropdown-list li:hover .project-location {
      color: #1a1a1a;
    }

    .project-name {
      font-size: 16px;
      letter-spacing: 0.08em;
      font-weight: 400;
      color: var(--text);
      font-family: "JJannon Book", "Times New Roman", Times, serif;
    }

    .project-location {
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--muted);
      font-family: "Times New Roman", Times, serif;
      font-style: italic;
    }

    .hero {
      padding: 80px 40px 120px;
      max-width: 600px;
    }

    .hero h1 {
      font-size: 32px;
      font-weight: 400;
      margin: 0 0 12px;
      letter-spacing: 0.02em;
    }

    .hero p {
      margin: 0;
      font-size: 15px;
      color: var(--muted);
    }

    /* EDITORIAL GRID - inspirat de studiomacbride.com */
    .gallery {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 40px;
      padding: 0 40px 160px;
      max-width: 1600px;
      margin: 0 auto;
    }

    .img {
      background: #d6d6d6;
      overflow: visible;
      position: relative;
      cursor: pointer;
    }

    .img-caption {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 10px);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0 2px;
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
      z-index: 3;
    }

    .img-caption-name {
      font-size: 19px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #1a1a1a;
      font-family: "Times New Roman", Times, serif;
      font-weight: 400;
    }

    .img-caption-location {
      font-size: 12px;
      letter-spacing: 0.05em;
      color: #1a1a1a;
      font-family: "Times New Roman", Times, serif;
      font-style: italic;
      white-space: nowrap;
    }

    .img:hover .img-caption {
      opacity: 1;
    }

    .img canvas {
      object-fit: cover;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    /* POZIȚIONARE ASIMETRICĂ - inspirat de studiomacbride.com */
    .img-1 { 
      grid-column: 1 / 6; 
      width: 565px;
      height: 461px;
      margin-top: 25px;
    }
    
    .img-2 { 
      grid-column: 11 / 13; 
      width: 456px;
      height: 804px;
      margin-top: 0;
    }

    .img-3 { 
      grid-column: 2 / 7; 
      width: 490px;
      height: 490px;
      margin-top: -60px;
    }
    
    .img-4 { 
      grid-column: 10 / 12;
      width: 446px !important;
      min-width: 446px;
      max-width: 446px;
      height: 647px;
      margin-top: 300px;
      margin-left: 100px;
      flex-shrink: 0;
    }

    .img-5 { 
      grid-column: 1 / 9; 
      width: 590px;
      height: 738px;
      margin-top: -200px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      header {
        position: sticky;
        top: 0;
        z-index: 1400;
        height: auto;
        padding: 20px;
        flex-wrap: nowrap;
        align-items: center;
        row-gap: 0;
      }

      .site-logo img {
        width: 55px;
        height: 10px;
      }

      .mobile-menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 1501;
      }

      nav {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 1300;
        background: #c9bfae;
        padding: 110px 20px 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.32s ease, visibility 0.32s ease;
      }

      body.mobile-nav-open nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      body.mobile-nav-open {
        overflow: hidden;
      }

      body.mobile-nav-open .mobile-menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
      }

      body.mobile-nav-open .site-logo {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1501;
      }

      nav a {
        margin: 0;
        font-size: 16px;
        letter-spacing: 0.1em;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.32s ease, transform 0.32s ease;
      }

      body.mobile-nav-open nav a {
        opacity: 1;
        transform: translateY(0);
      }

      body.mobile-nav-open nav a:nth-child(1) { transition-delay: 0.04s; }
      body.mobile-nav-open nav a:nth-child(2) { transition-delay: 0.08s; }
      body.mobile-nav-open nav a:nth-child(3) { transition-delay: 0.12s; }
      body.mobile-nav-open nav a:nth-child(4) { transition-delay: 0.16s; }

      .gallery {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 8px 20px 120px;
      }

      .img-1,
      .img-2,
      .img-3,
      .img-4,
      .img-5 {
        grid-column: 1 / -1 !important;
      }

      .img {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 0 44px !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
        overflow: visible;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
      }

      .img-1 { aspect-ratio: 4 / 3; }
      .img-2 { aspect-ratio: 3 / 4; }
      .img-3 { aspect-ratio: 1 / 1; }
      .img-4 { aspect-ratio: 2 / 3; }
      .img-5 { aspect-ratio: 4 / 5; }

      .img canvas {
        position: absolute;
        inset: 0;
      }

      .img-caption {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        margin-top: 0;
        opacity: 1;
        pointer-events: none;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
      }

      .img-caption-name {
        font-size: 16px;
        letter-spacing: 0.14em;
      }

      .img-caption-location {
        font-size: 12px;
      }

      .dropdown-content {
        display: block;
        overflow-y: auto;
      }

      .dropdown-image {
        display: none;
      }

      .dropdown-list {
        width: 100%;
        flex: none;
        padding: 108px 20px 32px;
      }

      .dropdown-list h2 {
        margin-bottom: 28px;
      }

      .dropdown-list li {
        padding: 16px 0;
      }

      footer {
        padding: 28px 20px 36px;
        font-size: 11px;
        line-height: 1.6;
      }
    }