/** Shopify CDN: Minification failed

Line 252:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article-gallery (INDEX:3) */
.article-gallery {
    padding: 40px 24px;
  }

  @media (min-width: 990px) {
    .article-gallery {
      padding: 60px 60px;
    }
  }

  .article-gallery__heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .article-gallery__masonry {
    column-gap: 12px;
  }

  .article-gallery__masonry--2 { columns: 2; }
  .article-gallery__masonry--3 { columns: 3; }
  .article-gallery__masonry--4 { columns: 4; }

  .article-gallery__item {
    break-inside: avoid;
    margin-bottom: 12px;
    cursor: zoom-in;
    overflow: hidden;
  }

  .article-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .article-gallery__item:hover img {
    transform: scale(1.05);
  }

  /* Lightbox */
  .ag-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .ag-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .ag-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
  }

  .ag-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .ag-lightbox__img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    display: block;
  }

  .ag-lightbox__counter {
    color: rgba(255,255,255,0.6);
    font-size: 0.85em;
    letter-spacing: 0.05em;
  }

  .ag-lightbox__close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    opacity: 0.8;
  }

  .ag-lightbox__close:hover { opacity: 1; }

  .ag-lightbox__prev,
  .ag-lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .ag-lightbox__prev { left: 20px; }
  .ag-lightbox__next { right: 20px; }

  .ag-lightbox__prev:hover,
  .ag-lightbox__next:hover {
    background: rgba(255,255,255,0.25);
  }

  @media (max-width: 768px) {
    .article-gallery__masonry--2,
    .article-gallery__masonry--3,
    .article-gallery__masonry--4 {
      columns: 2;
    }
  }

  @media (max-width: 480px) {
    .article-gallery__masonry--2,
    .article-gallery__masonry--3,
    .article-gallery__masonry--4 {
      columns: 1;
    }
  }
/* END_SECTION:article-gallery */

/* START_SECTION:article-image-with-text (INDEX:4) */
.article-iwt {
    padding: 60px 60px;
  }

  .article-iwt__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .article-iwt--reverse .article-iwt__inner {
    direction: rtl;
  }

  .article-iwt--reverse .article-iwt__inner > * {
    direction: ltr;
  }

  .article-iwt__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .article-iwt__subheading {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85em;
    margin-bottom: 12px;
    opacity: 0.6;
  }

  .article-iwt__heading {
    margin-bottom: 20px;
  }

  .article-iwt__body {
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .article-iwt {
      padding: 40px 24px;
    }

    .article-iwt__inner {
      grid-template-columns: 1fr;
      gap: 32px;
      direction: ltr !important;
    }
  }
/* END_SECTION:article-image-with-text */

/* START_SECTION:project-details (INDEX:52) */
.apd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .apd--auto { min-height: unset; }
  .apd--full { min-height: 100vh; }
  .apd--large { min-height: 80vh; }
  .apd--medium { min-height: 60vh; }
  .apd--small { min-height: 40vh; }

  .apd__photo {
    position: relative;
    overflow: hidden;
  }

  .apd--auto .apd__photo {
    min-height: 400px;
  }

  .apd__photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .apd__details {
    background-color: #f5f2ee;
    display: flex;x
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
  }

  .apd__details-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: fit-content;
  min-width: 400px;
}

  .apd__sketch img {
    width: 100%;
    height: auto;
    display: block;
  }

  .apd__sketch--small { width: 180px; }
  .apd__sketch--medium { width: 280px; }
  .apd__sketch--large { width: 380px; }

  .apd__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 120px;
  }

  .apd__meta-label {
    font-style: italic;
    font-size: 0.9em;
    margin-bottom: 4px;
    opacity: 0.7;
  }

  .apd__meta-value {
    font-size: 0.95em;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .apd {
      grid-template-columns: 1fr;
      min-height: auto !important;
    }

    .apd__photo {
      height: 60vw;
      min-height: 300px;
    }

    .apd--auto .apd__photo {
      min-height: 300px;
    }

    .apd__details {
      padding: 48px 24px;
    }

    .apd__details-inner {
      width: 100%;
    }

    .apd__sketch--small,
    .apd__sketch--medium,
    .apd__sketch--large {
      width: 60%;
    }

    .apd__meta {
      grid-template-columns: 1fr 1fr;
      gap: 24px 20px;
    }
  }

  @media (max-width: 480px) {
    .apd__meta {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:project-details */