/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* --- Accessibility helpers --- */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Ensure keyboard focus is visible */
:focus-visible {
  outline: 2px solid #0a84ff;
  outline-offset: 2px;
}

header {
  z-index: 1200;
  position: relative;
}

.no-break {
  white-space: nowrap;
}

/* tramsition overlay */
.transition-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #414141;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

/* Cursor */
/** Cursor Styles */
@media (any-pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    z-index: 9999;
    background-color: white;
    opacity: 1;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    mix-blend-mode: difference;
  }
  .cursor.customCursor {
    width: -moz-fit-content !important;
    width: fit-content !important;
    height: auto !important;
    padding: 0.5em;
    border-radius: 0;
    backdrop-filter: blur(10px);
    background-color: hsl(from var(--wp--preset--color--white) h s l/0.8);
    mix-blend-mode: difference;
  }
  .no-js .cursor {
    display: none;
  }
}
/* 3D Photo Gallery */
#gallery-3d-canvas {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  margin-block-start: 0;
  pointer-events: none;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  #gallery-3d-canvas {
    display: none;
  }
}
/* Carousel */
.full-page-height {
  position: relative !important;
}

/* Credits — Gutenberg structure */
.credits-group {
  position: relative;
  width: min(92vw, 980px);
  aspect-ratio: 16/9;
  margin: auto;
  /* Credits overlay occupies full frame; JS sets absolute positions per column */
}
.credits-group > figure {
  position: absolute;
  inset: 12% 18%; /* top/bottom: 12%, left/right: 18% */
  margin: 0 !important; /* override block margins */
  width: auto;
  height: 76%; /* auto from insets */
}
.credits-group > figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.8;
}
.credits-group .credits {
  position: absolute;
  inset: 0;
}
.credits-group .credits .wp-block-columns { /* container remains static; children are absolutely positioned by JS */ }
.credits-group .credits .wp-block-column {
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  font-size: 24px;
  text-transform: none;
  font-family: "creato display";
}
.credits-group .credits .wp-block-column p {
  margin: 0;
  line-height: 1.1;
}
.credits-group .credits .wp-block-column p + p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* Grid container */
.wp-block-gallery-grid {
  --gap: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  grid-auto-flow: dense; /* tighter packing */
}

/* Each item gets CSS vars --w and --h */
.wp-block-gallery-grid .wp-block-image {
  grid-column: span var(--w, 2);
  grid-row: span var(--h, 2);
  border-radius: 12px;
  overflow: hidden;
}

/* Maintain a clean box; image fills it */
.wp-block-gallery-grid .wp-block-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Responsive columns */
@media (max-width: 1200px) {
  .wp-block-gallery-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 800px) {
  .wp-block-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .wp-block-gallery-grid {
    grid-template-columns: 1fr;
  } /* full-width stack */
}
.projects-slider {
  height: 100%;
}

.projects-slider .project-list {
  display: none;
}

.projects-slider .project-list {
  pointer-events: none;
}

#gl {
  margin-block-start: 0;
}

#image-gl {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
}

.project-info {
  display: block;
  position: absolute; /* stay in document flow */
  top: 88%;
  z-index: 5; /* above canvas */
  width: 100%;
  text-align: center;
}
.project-info #project-title {
  text-align: center;
  margin: 0;
}
.project-info .slider-back-button,
.project-info .slider-next-button {
  position: absolute;
  padding: 0.75rem 1rem;
  border: none;
  z-index: 6;
  top: 50%;
  transform: translateY(-50%) !important;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-size: 2rem;
  font-family: "chack";
}
.project-info .slider-back-button:hover,
.project-info .slider-next-button:hover {
  opacity: 0.5 !important;
}
.project-info .slider-back-button {
  left: 1rem;
}
.project-info .slider-next-button {
  right: 1rem;
}

.content-swap-section .wp-block-group figure {
  display: none;
}
.content-swap-section .wp-block-column {
  height: -moz-fit-content;
  height: fit-content;
}
.content-swap-section .wp-block-column:first-child {
  /* dim all groups when hovered over this column */
  /* restore opacity on individual group hover */
}
.content-swap-section .wp-block-column:first-child:hover .wp-block-group {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.content-swap-section .wp-block-column:first-child .wp-block-group:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.0392156863);
}

.is-style-horizontal-sweep, .is-style-horizontal-scroll, .is-style-left-sweep, .is-style-right-sweep {
  flex-wrap: nowrap !important;
  display: flex;
  gap: 1rem;
  overflow: visible;
  width: 130%;
  justify-content: center;
  align-items: stretch;
}
.is-style-horizontal-sweep > figure, .is-style-horizontal-scroll > figure, .is-style-left-sweep > figure, .is-style-right-sweep > figure {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  height: auto;
  width: auto;
  flex-grow: 1;
}
.is-style-horizontal-sweep > figure img, .is-style-horizontal-sweep > figure video, .is-style-horizontal-scroll > figure img, .is-style-horizontal-scroll > figure video, .is-style-left-sweep > figure img, .is-style-left-sweep > figure video, .is-style-right-sweep > figure img, .is-style-right-sweep > figure video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 756px) {
  .is-style-horizontal-sweep figure, .is-style-horizontal-scroll figure, .is-style-left-sweep figure, .is-style-right-sweep figure {
    aspect-ratio: 1/1 !important;
  }
}

.client-grid .wp-block-cover {
  position: relative;
}
.client-grid .wp-block-cover a {
  position: relative;
}
.client-grid .logo-label {
  z-index: 1;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.thirtyfive-mm-icon {
  transform: translateX(-66px);
  transition: transform 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.thirtyfive-mm-icon:hover {
  transform: translateX(0);
}

.gonna-animated-icon {
  max-width: 300px;
  margin: 0 auto;
}
.gonna-animated-icon .logo-nn {
  opacity: 1;
}
.gonna-animated-icon .logo-g, .gonna-animated-icon .logo-o, .gonna-animated-icon .logo-a {
  opacity: 0.5;
  transform: translateY(2rem);
  transition: all 0.5s ease;
}
.gonna-animated-icon:hover .logo-g, .gonna-animated-icon:hover .logo-o, .gonna-animated-icon:hover .logo-a {
  opacity: 1;
  transform: translate(0);
}

.project-header .wp-block-huntsman-featured-media {
  margin-top: -100px;
}

/*# sourceMappingURL=style-theme.css.map*/