
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue"), local("HelveticaNeue");
  font-weight: 300 700;
  font-style: normal;
}

@font-face {
  font-family: "Orb Helvetica Light";
  src:
    local("Helvetica Neue Light"),
    local("HelveticaNeue-Light");
  font-weight: 300;
  font-style: normal;
}

:root {
  --ink: #1a1a1a;
  --paper: #ffffff;
  --frame: #ece7dd;
  --gutter: clamp(20px, 5vw, 64px);
  --header-top: 28px;
  --maroon-light: #744b4b;
  --maroon-mid: #562d2d;
  --maroon-dark: #421919;
  --periwinkle-light: #a8b5fc;
  --periwinkle-mid: #8a97de;
  --periwinkle-dark: #7683ca;
  --brown-light: #7a726a;
  --brown-mid: #4a4139;
  --brown-dark: #302720;
  --navy-light: #4d5665;
  --navy-mid: #2f3847;
  --navy-dark: #1b2433;
}

body.theme-home {
  --page-accent: #1a1a1a;
  --page-subaccent: #929292;
}

body.theme-graphic {
  --ink: var(--periwinkle-mid);
  --page-accent: var(--periwinkle-mid);
  --page-subaccent: var(--periwinkle-light);
}

body.theme-art {
  --ink: #66758a;
  --page-accent: #66758a;
  --page-subaccent: #9aa6b8;
}


* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

body.page-ready {
  opacity: 1;
}

body.page-exiting {
  opacity: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  letter-spacing: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: var(--header-top) var(--gutter) 0;
  flex: 0 0 auto;
}

.header-left,
.header-right {
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
}

.wordmark,
.back-link {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.wordmark {
  grid-column: 2;
  white-space: nowrap;
}

.wordmark:hover,
.back-link:hover {
  opacity: 0.5;
}

.menu-btn {
  position: relative;
  z-index: 1000;

  width: 44px;
  height: 44px;

  top: auto;
  right: auto;
  
  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;

  appearance: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn:focus,
.menu-btn:focus-visible {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.menu-btn span {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 20px;
  height: 1px;

  margin: 0;
  padding: 0;

  background: var(--ink);
  border-radius: 0;

  transform-origin: 50% 50%;

  transition:
    transform 170ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 120ms linear;

  will-change: transform, opacity;
}

.menu-btn span:nth-child(1) {
  transform:
    translate(-50%, -50%)
    translateY(-6px)
    rotate(0deg);
}

.menu-btn span:nth-child(2) {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scaleX(1);
}

.menu-btn span:nth-child(3) {
  transform:
    translate(-50%, -50%)
    translateY(6px)
    rotate(0deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform:
    translate(-50%, -50%)
    translateY(0)
    rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    scaleX(0);
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform:
    translate(-50%, -50%)
    translateY(0)
    rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  width: 100%;
  height: 100dvh;

  padding:
    clamp(110px, 14vh, 160px)
    max(24px, var(--gutter))
    70px;

  overflow-x: hidden;
  overflow-y: auto;

  background: #fff;
  color: #000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.nav-overlay.is-open,
.nav-overlay[aria-hidden="false"],
body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-panel {
  width: min(100%, 980px);
  margin: 0 auto;
}

.nav-primary,
.nav-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(38px, 5vh, 64px);
  width: 100%;
}

.nav-primary > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
}

.nav-primary > li > a {
  display: block;

  font-family: inherit;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;

  color: inherit;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-group {
  gap: clamp(22px, 2.7vh, 32px);
}

.nav-sub {
  display: grid;
  justify-content: center;
  align-items: center;

  grid-template-columns: max-content max-content;

  column-gap: clamp(34px, 4vw, 62px);
  row-gap: clamp(14px, 1.8vh, 22px);

  width: 100%;
  max-width: 900px;
}

.nav-sub li {
  margin: 0;
  text-align: center;
}

.nav-sub a {
  display: block;

  font-family: inherit;
  font-size: clamp(22px, 2.35vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;

  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-group--art .nav-sub li:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

.nav-group--graphic .nav-sub li:nth-child(3),
.nav-group--graphic .nav-sub li:nth-child(6) {
  grid-column: 1 / -1;
  justify-self: center;
}

.nav-primary a {
  transition: opacity 160ms ease;
}

.nav-primary a:hover,
.nav-primary a:focus-visible,
.nav-primary a.is-current {
  opacity: 0.5;
}

.menu-btn {
  z-index: 10002;
}

@media (max-width: 820px) {
  .nav-overlay {
    padding:
      calc(96px + env(safe-area-inset-top))
      20px
      calc(48px + env(safe-area-inset-bottom));
  }

  .nav-panel {
    width: 100%;
  }

  .nav-primary {
    gap: clamp(32px, 5.5vh, 48px);
  }

  .nav-primary > li > a {
    font-size: clamp(40px, 10vw, 56px);
  }

  .nav-group {
    gap: 20px;
  }

  .nav-sub {
    column-gap: clamp(20px, 6vw, 38px);
    row-gap: 14px;
  }

  .nav-sub a {
    font-size: clamp(18px, 4.7vw, 25px);
    line-height: 1.05;
  }
}

.footer-area {
  margin-top: auto;
  flex: 0 0 auto;
  background: var(--paper);
}

.footer-rule {
  margin: 0 var(--gutter);
  border: 0;
  border-top: 1px solid var(--ink);
}

.site-footer {
  height: 54px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}

.site-footer a {
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.55;
}

.home-page {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--gutter) 28px;
}

.home-stage {
  position: relative;
  width: min(760px, 100%);
  height: clamp(410px, calc(100svh - 190px), 720px);
  max-height: 720px;
  overflow: hidden;
  touch-action: none;
  background: var(--frame);
  border-radius: 0;
}

.orb {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: grab;
  touch-action: none;
  will-change: transform;
}

.orb.is-dragging {
  cursor: grabbing;
}

.orb-glow {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.orb-label {
  position: relative;
  z-index: 2;
  max-width: 70%;
  color: #fff;
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.orb.is-active .orb-label,
.orb--always-labeled .orb-label {
  opacity: 1;
}

.orb--about .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--maroon-light) 0%,
    var(--maroon-mid) 55%,
    var(--maroon-dark) 100%
  );
}

.orb--graphic .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--periwinkle-light) 0%,
    var(--periwinkle-mid) 55%,
    var(--periwinkle-dark) 100%
  );
}

.orb--art .orb-glow {
  background: radial-gradient(
    circle at 50% 50%,
    var(--navy-light) 0%,
    var(--navy-mid) 55%,
    var(--navy-dark) 100%
  );
}



.overview-page,
.detail-page,
.orb-page {
  flex: 1 1 auto;
  min-height: 0;
}

.page-heading {
  padding: 38px var(--gutter) 0;
}

.page-heading h1 {
  margin: 0 0 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-heading hr {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--ink);
}

.page-heading--detail {
  padding-top: 36px;
}
.page-heading--detail h1 {
  gap: 2px;
  margin-bottom: 19px;
}

.detail-heading-main {
  display: block;
  color: var(--page-accent, var(--ink));
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: normal;
  text-transform: uppercase;
  transition: opacity 0.16s ease;
}

.detail-heading-main:hover,
.detail-heading-main:focus-visible {
  opacity: 0.5;
}

.detail-heading-sub {
  display: block;
  margin: 0;

  color: var(--page-subaccent, #929292);

  font-family: inherit;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;

  cursor: default;
}

.overview-sections {
  width: 100%;
  padding: 32px 0 52px;
}

.gallery-row {
  scroll-margin-top: 24px;
  margin-bottom: 46px;
}

.gallery-row:last-child {
  margin-bottom: 0;
}

.gallery-row-header {
  min-height: 30px;
  margin: 0 var(--gutter) 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gallery-row-title {
  margin: 0;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.2;
}

a.gallery-row-title {
  transition: opacity 0.2s ease;
}

a.gallery-row-title:hover {
  opacity: 0.5;
}

.gallery-row-controls {
  display: flex;
  gap: 14px;
}

.gallery-row-controls button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gallery-row-controls button:disabled {
  opacity: 0.16;
  cursor: default;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 46px);
  min-height: 280px;
  margin: 0 var(--gutter);
  padding: 0 0 5px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  height: 274px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.gallery-image-wrap {
  position: relative;
  display: inline-flex;
  max-width: 360px;
  max-height: 260px;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.gallery-image-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 360px;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.32s ease;
}

.gallery-image-wrap img.has-border,
.detail-main-frame img.has-border,
.detail-thumb img.has-border {
  border: 0.5px solid #000;
}

.detail-main-frame img.has-border,
.detail-thumb img.has-border {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.91);
  opacity: 0;
  transition: opacity 0.25s ease;
  line-height: normal;
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.012);
}

.gallery-overlay-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.gallery-overlay-title {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.2;
}

.gallery-overlay-title em {
  font-style: italic;
  font-weight: 500;
}

.gallery-overlay-type {
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 300;
  line-height: 1.15;
}

.detail-layout {
  width: 100%;
  padding: 38px var(--gutter) 54px;
  display: grid;
  grid-template-columns: minmax(132px, 160px) minmax(330px, 620px) minmax(220px, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}



.detail-sidebar {
  min-width: 0;
}

.detail-thumbnails {
  width: 100%;
  max-height: min(64vh, 640px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1px 4px 1px 1px;
  scrollbar-width: thin;
  scrollbar-color: currentColor transparent;
}

.detail-thumb {
  position: relative;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.detail-thumb--poster {
  height: auto;
  aspect-ratio: 1080 / 1600;
}

.detail-thumb-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.detail-thumb--poster img {
  object-fit: cover;
}

.detail-thumb-overlay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.91);
  text-align: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.detail-thumb-overlay span {
  font-size: 8px;
  font-weight: 500;
  line-height: 1.12;
}

.detail-thumb-overlay small {
  font-size: 7px;
  font-weight: 300;
  line-height: 1.1;
}

.detail-thumb-overlay em {
  font-style: italic;
}

.detail-thumb:hover .detail-thumb-overlay,
.detail-thumb:focus-visible .detail-thumb-overlay {
  opacity: 1;
}

.detail-thumb:hover img,
.detail-thumb:focus-visible img {
  transform: scale(1.018);
}

.detail-feature {
  min-width: 0;
  width: 100%;
}

.detail-main-frame {
  width: 100%;
  height: min(62vh, 650px);
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.detail-main-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.3s ease;
}

.detail-main-frame img.is-changing {
  opacity: 0;
}

.detail-main-frame--poster {
  width: min(100%, 400px);
  aspect-ratio: 1080 / 1600;
  height: auto;
  max-height: min(66vh, 650px);
  margin-inline: auto;
}

.detail-main-frame--poster img {
  object-fit: contain;
}



.viewer-controls {
  width: 100%;
  min-height: 38px;
  padding-top: 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 400;
}

.viewer-controls button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.viewer-controls button:first-child {
  justify-self: start;
}

.viewer-controls button:last-child {
  justify-self: end;
}

.viewer-controls button:hover {
  opacity: 0.5;
}

.detail-info {
  min-width: 0;
}

.detail-copy {
  padding-top: clamp(72px, 9vh, 112px);
  max-width: 380px;
}

.detail-copy h2 {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.poster-title em {
  font-style: italic;
  font-weight: 500;
}

.detail-made-with{
  margin: 0;

  font-family: inherit;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 300;
  font-style: normal;

  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

.detail-copy h2 + .detail-made-with {
  margin-top: 8px;
}







.variant-nav {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.variant-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.variant-button:hover,
.variant-button.is-active {
  opacity: 1;
}

.variant-dot {
  width: 25px;
  height: 25px;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--variant-color);
}

.variant-label {
  font-size: 8px;
  font-weight: 500;
}

.poster-stats {
  width: min(100%, 320px);
  margin: 34px 0 0;
}

.poster-stats > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  margin-bottom: 10px;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.15;
}

.poster-stats dt,
.poster-stats dd {
  margin: 0;
}

.poster-stats dt {
  font-weight: 400;
}

.poster-stats dd {
  font-weight: 300;
}













.about-page {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 0 48px;
}

.about-layout {
  width: min(
    1280px,
    calc(100% - (var(--gutter) * 2))
  );

  margin: 32px auto 0;

  display: grid;
  grid-template-columns:
    64px
    minmax(280px, 1fr)
    minmax(260px, 1.1fr);

  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.about-thumbs {
  align-self: center;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-thumb {
  width: 64px;
  height: 80px;

  margin: 0;
  padding: 0;

  border: 0;
  overflow: hidden;

  appearance: none;
  background: transparent;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 200ms ease;

  will-change: transform;
}

.about-thumb:hover,
.about-thumb:focus-visible {
  transform: translateY(-2px);
}

.about-thumb img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.about-thumb:hover img,
.about-thumb:focus-visible img {
  opacity: 1;
  transform: none;
  filter: none;
}

.about-photo-column {
  min-width: 0;
}

.about-main-photo {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 5;

  overflow: hidden;
  background: var(--paper);
}

.about-main-photo img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  opacity: 0;
  transition: opacity 500ms ease;
}

.about-main-photo img.is-active {
  z-index: 1;
  opacity: 1;
}

.about-copy {
  align-self: start;
  min-width: 0;
}

.about-copy p {
  max-width: 520px;

  margin: 0 0 17px;

  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.5;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.orb-page {
  display: flex;
  flex-direction: column;
}

.floating-orb-field {
  position: relative;
  flex: 1 1 auto;
  min-height: 380px;
  margin: 18px var(--gutter) 18px;
  overflow: hidden;
  touch-action: none;
}

.floating-orb-field .orb-label {
  font-size: clamp(11px, 1.15vw, 15px);
}

@media (max-width: 820px) {
  :root {
    --header-top: 22px;
  }

  .site-header {
    min-height: 50px;
  }

  .page-heading {
    padding-top: 30px;
  }

  .detail-layout{
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 32px;
  }

  .detail-feature {
    order: 1;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .detail-info {
    order: 2;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .detail-copy {
    padding-top: 12px;
  }

  .detail-sidebar {
    order: 3;
    width: 100%;
  }

  .detail-thumbnails {
    max-height: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 7px;
  }

  .detail-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 94px;
  }

  .detail-thumb--poster {
    height: auto;
  }

  

  

  .about-layout {
    grid-template-columns: 56px minmax(250px, 1fr);
  }

  .about-copy {
    grid-column: 2;
  }

  .about-thumb {
    width: 56px;
    height: 70px;
  }
}

@media (max-width: 560px) {
  .about-page {
    padding-top: 0;
  }

  .about-layout {
    width: calc(100% - (var(--gutter) * 2));

    margin-top: 24px;

    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-photo-column {
    order: 1;
  }

  .about-thumbs {
    order: 2;
    align-self: auto;

    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 4px;
  }

  .about-copy {
    order: 3;
    grid-column: auto;
  }

  .about-thumb {
    flex: 0 0 58px;

    width: 58px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 821px) {

  .detail-layout {
    width: 100%;
    padding-inline: var(--gutter);

    grid-template-columns:
      minmax(330px, 620px)
      minmax(132px, 160px)
      minmax(220px, 1fr);

    grid-template-areas:
      "feature sidebar info";

    align-items: start;
  }

  
  

  .detail-feature {
    grid-area: feature;
  }

  .detail-sidebar {
    grid-area: sidebar;
  }

  .detail-info {
    grid-area: info;
  }

  

  .about-layout {
    grid-template-columns:
      minmax(280px, 1fr)
      64px
      minmax(260px, 1.1fr);

    grid-template-areas:
      "photo thumbs copy";

    align-items: start;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-thumbs {
    grid-area: thumbs;
  }

  .about-copy {
    grid-area: copy;
  }
}

@media (min-width: 821px) and (max-width: 1060px) {

  .detail-layout{
    grid-template-columns:
      minmax(300px, 1fr)
      minmax(120px, 145px)
      minmax(190px, 0.72fr);

    gap: 30px;
  }

  .about-layout {
    grid-template-columns:
      minmax(300px, 1fr)
      56px
      minmax(230px, 0.9fr);

    gap: 30px;
  }

  .about-thumb {
    width: 56px;
    height: 70px;
  }
}

@media (min-width: 821px) {
  .detail-sidebar,
  .about-thumbs {
    align-self: start;
    justify-content: flex-start;
    margin-top: 0;
  }

  .detail-thumbnails,
  .about-thumbs {
    justify-content: flex-start;
  }
}


.detail-main-frame--campaign {
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: min(64vh, 650px);
}

.detail-main-frame--campaign video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.detail-main-frame--campaign img[hidden],
.detail-main-frame--campaign video[hidden] {
  display: none;
}
.gallery-image-wrap video {
  display: block;
  width: auto;
  height: auto;
  max-width: 360px;
  max-height: 260px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.32s ease;
}

.gallery-card:hover video,
.gallery-card:focus-visible video {
  transform: scale(1.012);
}

.detail-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
@media (min-width: 821px) {
  .detail-sidebar {
    min-height: 0;
    overflow: hidden;
  }

  .detail-sidebar > .detail-thumbnails{
    width: 100%;
    height: 100%;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1px 6px 1px 1px;
    scrollbar-width: thin;
    scrollbar-color: currentColor transparent;
  }

  .detail-thumbnails {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 16px;
  }

  
}

@media (max-width: 820px) {
  .detail-sidebar {
    height: auto !important;
    overflow: visible;
  }

  .detail-sidebar > .detail-thumbnails{
    width: 100%;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 7px;
  }

  .detail-thumb {
    flex: 0 0 72px;
    width: 72px;
  }

  
}

@media (min-width: 821px) {
  .detail-layout, .detail-layout--campaign{
    grid-template-columns:
      minmax(300px, 1.8fr)
      clamp(140px, 13vw, 184px)
      minmax(190px, 0.9fr);

    grid-template-areas: "feature sidebar info";
    column-gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
  }

  .detail-feature {
    grid-area: feature;
  }

  .detail-sidebar {
    grid-area: sidebar;
    min-width: 0;
    align-self: start;
    overflow: hidden;
  }

  .detail-info {
    grid-area: info;
  }

  .detail-sidebar > .detail-thumbnails{
    width: 100%;
    height: 100%;
  }

  .about-layout {
    grid-template-columns:
      minmax(300px, 1.8fr)
      clamp(140px, 13vw, 184px)
      minmax(220px, 0.9fr);

    grid-template-areas: "photo thumbs copy";
    column-gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-thumbs {
    grid-area: thumbs;
    align-self: start;
  }

  .about-copy {
    grid-area: copy;
  }

  .detail-thumbnails, .about-thumbs{
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 14px;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 0 8px 0 0;

    scrollbar-width: thin;
    scrollbar-color: currentColor transparent;
    scrollbar-gutter: stable;
    overscroll-behavior: contain;
  }

  .detail-thumb, .detail-thumb--poster, .about-thumb{
    flex: 0 0 112px !important;

    width: 100% !important;
    height: 112px !important;
    aspect-ratio: auto !important;

    margin: 0;
    padding: 8px;

    border: 0;
    overflow: hidden;

    background: rgba(0, 0, 0, 0.025);
    opacity: 0.72;

    transition: opacity 180ms ease;
    scroll-snap-align: start;
  }

  .detail-thumb:hover, .detail-thumb:focus-visible, .about-thumb:hover, .about-thumb:focus-visible{
    opacity: 1;
    transform: none;
  }

  .detail-thumb-image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .detail-thumb img, .detail-thumb video, .about-thumb img{
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100%;
    max-height: 100%;

    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;

    transform: none !important;
  }
}

.detail-thumb-overlay{
  display: none !important;
}

.detail-main-frame--poster + .viewer-controls {
  width: min(100%, 400px);
  margin-inline: auto;
}

@media (max-width: 820px) {
  .detail-layout, .detail-layout--campaign{
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "sidebar"
      "info";

    gap: 26px;
  }

  .detail-feature,
  .detail-sidebar,
  .detail-info {
    order: initial !important;
  }

  .detail-feature {
    grid-area: feature;
  }

  .detail-sidebar {
    grid-area: sidebar;

    width: 100%;
    height: auto !important;

    overflow: visible;
  }

  .detail-info {
    grid-area: info;
  }

  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "thumbs"
      "copy";

    gap: 24px;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-thumbs {
    grid-area: thumbs;
    height: auto !important;
  }

  .about-copy {
    grid-area: copy;
  }

  .detail-thumbnails, .about-thumbs{
    width: 100%;
    height: auto !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 0 8px;
  }

  .detail-thumb, .detail-thumb--poster, .about-thumb{
    flex: 0 0 124px !important;

    width: 124px !important;
    height: 92px !important;
    aspect-ratio: auto !important;

    padding: 6px;
  }
}
.detail-layout, .detail-layout--campaign{
  align-items: start !important;
}

.detail-info {
  align-self: start !important;
  justify-self: start !important;
  justify-content: flex-start !important;

  height: auto !important;
  min-height: 0 !important;

  margin-top: 0 !important;
  padding-top: 0 !important;

  transform: none !important;
}
@media (min-width: 821px) {
  .detail-info,
  .detail-copy {
    align-self: start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 820px) {
  .orb-label {
    opacity: 1 !important;
  }

  .gallery-track {
    overflow-x: auto !important;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
  }

  .gallery-card {
    scroll-snap-align: start;
  }

  .detail-main-frame,
  .about-main-photo {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .detail-main-frame img,
  .about-main-photo img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }
}

@media (min-width: 821px) {
  .about-layout {
    grid-template-columns:
      minmax(300px, 1.8fr)
      minmax(260px, 0.9fr) !important;

    grid-template-areas:
      "photo copy" !important;

    column-gap: clamp(40px, 6vw, 88px);
    align-items: start;
  }

  .about-photo-column {
    grid-area: photo;
  }

  .about-copy {
    grid-area: copy;
    align-self: start;
  }
}

@media (max-width: 820px) {
  .about-layout {
    grid-template-columns: 1fr !important;

    grid-template-areas:
      "photo"
      "copy" !important;

    gap: 24px;
  }

  .about-photo-column {
    grid-area: photo;
    order: initial !important;
  }

  .about-copy {
    grid-area: copy;
    grid-column: auto !important;
    order: initial !important;
  }
}
.about-main-photo {
  width: min(100%, 560px);
  margin-inline: auto;
}
@media (min-width: 821px) {
  .about-layout {
    width: calc(100% - (var(--gutter) * 2)) !important;
    max-width: none;

    grid-template-columns:
      minmax(0, 520px)
      minmax(260px, 1fr) !important;

    grid-template-areas: "photo copy" !important;
  }

  .about-photo-column {
    grid-area: photo;
    width: 100%;
    min-width: 0;
    justify-self: stretch !important;
  }

  .about-main-photo {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media (max-width: 820px) {
  .nav-overlay {
    padding:
      calc(96px + env(safe-area-inset-top))
      20px
      calc(48px + env(safe-area-inset-bottom));
  }

  .nav-panel {
    width: 100%;
  }

  .nav-primary {
    gap: clamp(32px, 5.5vh, 48px);
  }

  .nav-primary > li > a {
    font-size: clamp(40px, 10vw, 56px);
    line-height: 0.95;
  }

  .nav-group {
    gap: 20px;
  }

  .nav-sub {
    column-gap: clamp(20px, 6vw, 38px);
    row-gap: 14px;
  }

  .nav-sub a {
    font-size: clamp(18px, 4.7vw, 25px);
    line-height: 1.05;
  }
}

.nav-overlay {
  padding:
    clamp(76px, 9vh, 105px)
    max(24px, var(--gutter))
    48px;
}

.nav-panel {
  width: min(100%, 760px);
}

.nav-primary {
  gap: clamp(26px, 3.5vh, 38px);
}

.nav-primary > li > a {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.nav-group {
  gap: clamp(14px, 1.8vh, 20px);
}

.nav-sub {
  column-gap: clamp(24px, 3vw, 42px);
  row-gap: clamp(9px, 1.2vh, 14px);
  max-width: 720px;
}

.nav-sub a {
  font-size: clamp(14px, 1.55vw, 20px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

@media (max-width: 820px) {
  .nav-overlay {
    padding:
      calc(76px + env(safe-area-inset-top))
      18px
      calc(38px + env(safe-area-inset-bottom));
  }

  .nav-primary {
    gap: 27px;
  }

  .nav-primary > li > a {
    font-size: clamp(29px, 8vw, 38px);
  }

  .nav-group {
    gap: 14px;
  }

  .nav-sub {
    column-gap: 20px;
    row-gap: 10px;
  }

  .nav-sub a {
    font-size: clamp(13px, 3.8vw, 17px);
  }
}

.nav-overlay {
  color: var(--ink) !important;
}

.nav-primary a,
.nav-primary > li > a,
.nav-sub a {
  color: inherit !important;
}

.nav-primary a.is-current {
  opacity: 1 !important;
}

.menu-btn {
  color: var(--ink) !important;
}

.menu-btn span {
  background: currentColor !important;
}


.orb-label,
.floating-orb-field .orb-label {
  font-family:
    "Helvetica Neue Light",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif !important;

  font-weight: 200 !important;
  font-synthesis: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.nav-primary > li > a {
  font-size: clamp(22px, 2.5vw, 32px) !important;
}

.nav-sub a {
  font-size: clamp(10px, 1.1vw, 14px) !important;
}

@media (max-width: 820px) {
  .nav-primary > li > a {
    font-size: clamp(22px, 6vw, 28px) !important;
  }

  .nav-sub a {
    font-size: clamp(10px, 2.8vw, 12px) !important;
  }
}

@media (max-width: 820px) {
  .overview-sections .gallery-track {
    justify-content: flex-start !important;
    scroll-behavior: auto !important;
    scroll-padding-left: 0 !important;
    overflow-anchor: none;
  }

  .overview-sections .gallery-card:first-child {
    margin-left: 0 !important;
  }
}
.gallery-image-wrap,
.detail-thumb {
  position: relative;
}

.video-marker {
  position: relative !important;
}

.video-marker::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;

  width: 20px;
  height: 20px;

  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.38);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6 4.25L11.5 8L6 11.75Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;

  pointer-events: none;
}

.video-marker::after {
  content: none !important;
}

.detail-thumb.video-marker::before {
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  background-size: 9px 9px;
}

.detail-main-frame.video-marker::before {
  top: 10px;
  right: 10px;
  width: 23px;
  height: 23px;
  background-size: 14px 14px;
}
.detail-description {
  max-width: 34ch;
  margin: 16px 0 0;

  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.45;

  color: currentColor;
}

.detail-zoom-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;

  display: grid;
  place-items: center;

  padding:
    calc(56px + env(safe-area-inset-top))
    clamp(18px, 4vw, 64px)
    calc(36px + env(safe-area-inset-bottom));

  background: rgba(0, 0, 0, 0.72);

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox__image {
  display: block;

  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 88vh;

  object-fit: contain;

  background: #fff;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.32);
}

.image-lightbox__close {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top));
  right: calc(22px + env(safe-area-inset-right));
  z-index: 20001;

  width: 40px;
  height: 40px;
  padding: 0;

  border: 0;
  background: transparent;

  color: #fff;
  font-family: inherit;
  font-size: 36px;
  font-weight: 200;
  line-height: 1;

  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .image-lightbox__image {
    max-width: 94vw;
    max-height: 82vh;
  }

  .image-lightbox__close {
    top: calc(12px + env(safe-area-inset-top));
    right: 14px;
  }
}
.detail-confidentiality {
  margin: 10px 0 0;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.7;
}



body.hampys-case-study {
  --ink: #66758a;
  --page-accent: #66758a;
  --page-subaccent: #9aa6b8;
  --hampys-blue: #6cace4;
  --hampys-gap: clamp(18px, 2vw, 32px);
  background: #fff;
}

.hampys-case-study .site-header { position: relative; z-index: 10003; }
.hampys-case-study .nav-overlay { z-index: 10000; }

.case-study { width: 100%; flex: 1 1 auto; overflow: clip; }
.case-intro { padding: 38px var(--gutter) 0; }
.case-kicker,.case-label,.case-meta,.case-note { margin:0; letter-spacing:normal; }
.case-kicker,.case-label { font-size:12px; font-weight:500; line-height:1.1; text-transform:uppercase; color:var(--page-accent); }
.case-kicker { font-size:14px; }
.case-title { margin:4px 0 0; color:var(--page-subaccent); font-size:clamp(26px,4.2vw,62px); font-weight:300; line-height:.98; letter-spacing:-.045em; }
.case-meta { margin-top:16px; font-size:clamp(11px,.95vw,13px); font-weight:300; line-height:1.45; color:var(--page-accent); }
.case-rule { margin:25px 0 0; border:0; border-top:1px solid currentColor; }

.case-section { width:100%; padding:clamp(58px,7.5vw,112px) var(--gutter) 0; }
.case-section--tight { padding-top:clamp(42px,5.7vw,82px); }
.case-section--last { padding-bottom:clamp(72px,9vw,128px); }
.case-label { margin-bottom:20px; }
.case-copy-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(34px,7vw,110px); max-width:1120px; }
.case-copy-block { max-width:520px; }
.case-copy-block h2,.case-copy-block h3,.direction-card h3 { margin:0; font-size:clamp(17px,1.55vw,22px); font-weight:500; line-height:1.16; letter-spacing:-.01em; }
.case-copy-block p,.direction-card p,.case-note { margin:9px 0 0; font-size:clamp(13px,1.08vw,16px); font-weight:300; line-height:1.48; letter-spacing:normal; }
.case-note { max-width:900px; margin-top:15px; }

.case-full-bleed { width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); }
.case-full-bleed img { width:100%; height:auto; display:block; }

.case-big-idea { max-width:1100px; margin:0; color:var(--hampys-blue); font-size:clamp(46px,9vw,132px); font-weight:300; line-height:.78; letter-spacing:-.06em; }
.case-big-idea span { display:block; margin:0; padding:0; }
.case-idea-copy { max-width:650px; margin:26px 0 0; font-size:clamp(14px,1.25vw,18px); font-weight:300; line-height:1.5; letter-spacing:normal; text-align:left; }

/* Keep the strategic sequence visually continuous at every width. */
.strategy-chain { display:flex; flex-wrap:wrap; align-items:center; gap:clamp(7px,1vw,14px) clamp(9px,1.2vw,18px); max-width:1180px; padding:clamp(26px,3.8vw,54px) 0 4px; }
.strategy-chain .step { white-space:nowrap; font-size:clamp(18px,2vw,30px); font-weight:300; line-height:1.05; letter-spacing:-.035em; transition:opacity .2s ease,color .2s ease; }
.strategy-chain .step:hover { color:var(--hampys-blue); }
.strategy-chain .arrow { flex:0 0 auto; font-size:clamp(18px,2vw,28px); font-weight:300; line-height:1; opacity:.55; transform:none !important; animation:none !important; transition:none !important; }

.art-direction-grid { display:grid; grid-template-columns:minmax(280px,.8fr) minmax(420px,1.2fr); gap:clamp(34px,5.5vw,86px); align-items:start; }
.direction-list { display:grid; gap:28px; }
.direction-card { padding-top:16px; border-top:1px solid currentColor; transition:transform .25s ease, opacity .25s ease; }
.direction-card:hover { transform:translateY(-3px); }
.direction-card h3 { color:var(--page-accent); }
.direction-card p { max-width:440px; }

/* Thin campaign border standard. */
.campaign-border { outline:1px solid var(--hampys-blue); outline-offset:-1px; }

/* Ordered editorial moodboard: intentionally composed, never random. */
.moodboard-grid { display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); grid-auto-rows:clamp(52px,4.8vw,76px); gap:clamp(12px,1.4vw,21px); align-items:start; width:100%; min-height:clamp(720px,70vw,980px); }
.mood-card { margin:0; min-width:0; position:relative; z-index:1; transition:transform .28s cubic-bezier(.2,.7,.2,1), filter .28s ease; }
.mood-card img { display:block; width:100%; height:100%; object-fit:cover; }
.mood-card:hover { z-index:20; transform:translateY(-6px) scale(1.015); filter:drop-shadow(0 18px 26px rgba(0,0,0,.12)); }
.mood-card--1 { grid-column:1 / span 3; grid-row:1 / span 5; }
.mood-card--2 { grid-column:1 / span 3; grid-row:7 / span 4; }
.mood-card--3 { grid-column:4 / span 4; grid-row:3 / span 6; }
.mood-card--4 { grid-column:7 / span 3; grid-row:1 / span 5; }
.mood-card--5 { grid-column:10 / span 3; grid-row:3 / span 4; }
.mood-card--6 { grid-column:8 / span 5; grid-row:7 / span 4; }

/* Visual world keeps its off-balance editorial rhythm, but in a predictable grid. */
.world-grid { display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:clamp(14px,2vw,30px); align-items:start; }
.world-card { margin:0; position:relative; z-index:1; transition:transform .28s ease,filter .28s ease; }
.world-card img { display:block; width:100%; height:auto; }
.world-card:hover { z-index:30; transform:translateY(-6px) scale(1.012); filter:drop-shadow(0 18px 26px rgba(0,0,0,.12)); }
.world-card--1 { grid-column:1 / span 5; }
.world-card--2 { grid-column:7 / span 6; margin-top:clamp(30px,5vw,76px); }
.world-card--3 { grid-column:2 / span 4; margin-top:clamp(-28px,-2vw,-12px); }
.world-card--4 { grid-column:7 / span 4; margin-top:clamp(16px,3vw,50px); }

/* Shared blurred-background system. Three-image versions NEVER stack. */
.blur-stage { position:relative; isolation:isolate; overflow:hidden; width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); padding:clamp(34px,5vw,72px) max(12px,3.2vw); }
.blur-stage::before { content:""; position:absolute; inset:-42px; z-index:-2; background-image:var(--blur-image); background-size:cover; background-position:center; filter:blur(30px) saturate(.86) brightness(.82); transform:scale(1.09); }
.blur-stage::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(120deg,rgba(39,25,23,.12),rgba(18,42,65,.16)); }
.blur-row { width:min(1320px,94vw); margin:0 auto; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(12px,2.1vw,32px); align-items:center; }
.blur-card { margin:0; min-width:0; position:relative; z-index:1; transition:transform .3s cubic-bezier(.2,.7,.2,1),filter .3s ease; }
.blur-card img { display:block; width:100%; height:auto; }
.blur-card:hover { z-index:25; transform:translateY(-7px) scale(1.018); filter:drop-shadow(0 20px 26px rgba(0,0,0,.2)); }

/* Messaging: one clean finished composite. */
.messaging-stage { width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); background:#000; overflow:hidden; }
.messaging-stage img { display:block; width:100%; height:auto; object-fit:contain; }

/* Digital: one finished composition over the familiar blur treatment. */
.digital-stage { padding:clamp(34px,5.2vw,78px) max(12px,3vw); }
.digital-composite { width:min(1160px,91vw); margin:0 auto; transition:transform .28s ease,filter .28s ease; }
.digital-composite img { width:100%; height:auto; display:block; }
.digital-composite:hover { transform:translateY(-5px) scale(1.006); filter:drop-shadow(0 20px 30px rgba(0,0,0,.18)); }

.transparent-insert { width:min(960px,82vw); margin:0 auto clamp(34px,5vw,72px); }
.transparent-insert img { width:100%; height:auto; display:block; filter:drop-shadow(0 16px 25px rgba(0,0,0,.08)); }

/* OOH: larger overlapping cards with hover-to-front, no bulky frame. */
.ooh-stage { position:relative; width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); min-height:clamp(620px,59vw,930px); overflow:hidden; background:linear-gradient(145deg,#7b685d 0%,#243e58 58%,#17314b 100%); }
.ooh-card { position:absolute; margin:0; z-index:1; transition:transform .3s cubic-bezier(.2,.7,.2,1),filter .3s ease; }
.ooh-card img { display:block; width:100%; height:auto; }
.ooh-card:hover { z-index:50; transform:translateY(-8px) scale(1.025); filter:drop-shadow(0 22px 28px rgba(0,0,0,.24)); }
.ooh-card--1 { width:35%; left:4%; top:8%; }
.ooh-card--2 { width:37%; left:33%; top:4%; }
.ooh-card--3 { width:48%; right:4%; top:31%; }
.ooh-card--4 { width:46%; left:13%; top:48%; }

/* Premium packaging reveal: clean supplied digital box states, no CSS-drawn geometry. */
.box-reveal { width:min(1180px,calc(100% - 2*var(--gutter))); margin:24px auto 0; }
.box-button { width:100%; margin:0; padding:0; border:0; background:transparent; color:inherit; cursor:pointer; text-align:center; }
.box-scene { position:relative; min-height:clamp(420px,52vw,720px); display:grid; place-items:center; overflow:visible; perspective:1200px; }
.box-shell { position:absolute; inset:0; display:grid; place-items:center; transition:filter .6s ease,opacity .6s ease,transform .6s cubic-bezier(.22,.75,.18,1); }
.box-state { position:absolute; width:min(880px,82vw); max-height:92%; object-fit:contain; transition:opacity .58s ease,transform .58s cubic-bezier(.22,.75,.18,1); will-change:opacity,transform; }
.box-state--closed { opacity:1; transform:translateY(0) scale(1); }
.box-state--open { opacity:0; transform:translateY(18px) scale(.985); }
.retention-card { position:absolute; z-index:5; width:min(730px,68vw); max-height:82%; object-fit:contain; opacity:0; transform:translateY(42px) scale(.92); filter:drop-shadow(0 20px 32px rgba(0,0,0,.2)); transition:opacity .62s ease .12s,transform .68s cubic-bezier(.2,.75,.18,1) .08s; }
.box-hint { position:absolute; bottom:18px; z-index:7; font-size:11px; font-weight:300; opacity:.65; transition:opacity .25s ease; }
.box-button.is-open .box-state--closed { opacity:0; transform:translateY(-8px) scale(.99); }
.box-button.is-open .box-state--open { opacity:1; transform:translateY(0) scale(1); }
.box-button.is-open .box-shell { filter:blur(3px); opacity:.26; transform:scale(.985); }
.box-button.is-open .retention-card { opacity:1; transform:translateY(-6px) scale(1); }
.box-button.is-open .box-hint { opacity:0; }





/* Fade-in behavior keeps motion low-key and editorial. */
.reveal-item { opacity:0; transform:translateY(18px); transition:opacity .62s ease var(--reveal-delay,0ms),transform .62s cubic-bezier(.22,.75,.18,1) var(--reveal-delay,0ms); }
.reveal-item.is-visible { opacity:1; transform:none; }

@media (max-width: 820px) {
  .case-intro { padding-top:30px; }
  .case-section { padding-top:clamp(44px,9vw,64px); }
  .case-copy-grid,.art-direction-grid { grid-template-columns:1fr; }
  .case-copy-grid { gap:30px; }
  .case-big-idea { font-size:clamp(50px,15vw,92px); }
  .case-idea-copy { margin-top:20px; }
  .strategy-chain { gap:8px 10px; padding-top:26px; }
  .strategy-chain .step { font-size:clamp(18px,5.1vw,26px); }
  .strategy-chain .arrow { font-size:clamp(18px,5vw,24px); }

  .moodboard-grid { min-height:0; grid-template-columns:repeat(2,minmax(0,1fr)); grid-auto-rows:auto; gap:12px; }
  .mood-card { grid-column:auto !important; grid-row:auto !important; margin:0 !important; }
  .mood-card--3,.mood-card--6 { grid-column:1 / -1 !important; width:72%; justify-self:center; }
  .mood-card img { height:auto; object-fit:contain; }

  .world-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .world-card { grid-column:auto !important; margin:0 !important; }

  /* Explicitly preserve the three-image row on narrow screens. */
  .blur-stage { padding:22px 8px; }
  .blur-row { width:calc(100vw - 16px); grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
  .blur-card:hover { transform:none; filter:none; }

  .digital-stage { padding:24px 8px; }
  .digital-composite { width:calc(100vw - 16px); }
  .transparent-insert { width:92vw; }

  .ooh-stage { min-height:84vw; }
  .ooh-card--1 { width:40%; left:2%; top:6%; }
  .ooh-card--2 { width:42%; left:30%; top:3%; }
  .ooh-card--3 { width:54%; right:2%; top:34%; }
  .ooh-card--4 { width:52%; left:8%; top:49%; }

  .box-reveal { width:100%; }
  .box-scene { min-height:78vw; }
  .box-state { width:94vw; max-height:94%; }
  .retention-card { width:80vw; max-height:80%; }
  .box-hint { bottom:4px; }
}

@media (max-width: 520px) {
  .case-title { font-size:clamp(25px,8vw,40px); }
  .mood-card--3,.mood-card--6 { width:84%; }
  .world-grid { gap:9px; }
  .blur-row { gap:6px; }
  .ooh-stage { min-height:92vw; }
  .case-note { font-size:12px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity:1 !important; transform:none !important; transition:none !important; }
  .mood-card,.world-card,.blur-card,.digital-composite,.ooh-card,.box-shell,.box-state,.retention-card { transition:none !important; }
}

  

/* ============================================================
   Targeted Hampys revisions — 2026-08-17
   These overrides intentionally touch only the requested page
   sections. Global isaacreese.com header/nav/footer rules above
   are preserved from the current site-aligned mockup.
   ============================================================ */

/* 1) Art-direction reference collage: tighter, connected, editorial. */
.moodboard-cluster {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
  width: 100%;
  max-width: 980px;
  aspect-ratio: 1.38 / 1;
  margin-left: auto;
  align-self: start;
}
.moodboard-cluster .mood-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  z-index: 1;
  background: #fff;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), filter .28s ease;
}
.moodboard-cluster .mood-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.moodboard-cluster .mood-card:hover {
  z-index: 40;
  transform: translateY(-5px) scale(1.012);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.12));
}
.moodboard-cluster .mood-card--1 { grid-column: 1 / span 3; grid-row: 1 / span 4; }
.moodboard-cluster .mood-card--2 { grid-column: 1 / span 3; grid-row: 5 / span 3; }
.moodboard-cluster .mood-card--3 { grid-column: 4 / span 4; grid-row: 2 / span 6; }
.moodboard-cluster .mood-card--4 { grid-column: 8 / span 3; grid-row: 1 / span 4; }
.moodboard-cluster .mood-card--5 { grid-column: 10 / span 3; grid-row: 2 / span 3; margin-left: -12%; }
.moodboard-cluster .mood-card--6 { grid-column: 8 / span 5; grid-row: 5 / span 3; }

/* 2) Visual World: restore a clean, even 2x2 treatment. */
.world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  align-items: stretch;
}
.world-card,
.world-card--1,
.world-card--2,
.world-card--3,
.world-card--4 {
  grid-column: auto !important;
  margin: 0 !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.world-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 3) Messaging: the new shorts asset is already correctly cropped. */
.messaging-stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: transparent;
  overflow: hidden;
}
.messaging-stage .messaging-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  outline: 0 !important;
  border: 0 !important;
}

/* 4) Digital: individual assets maintain the reference overlap as one responsive composition. */
.digital-stage {
  padding: clamp(26px, 4.5vw, 66px) max(4px, 2vw);
}
.digital-canvas {
  position: relative;
  width: min(1320px, 96vw);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  isolation: isolate;
}
.digital-piece {
  position: absolute;
  margin: 0;
  z-index: 1;
  transition: transform .30s cubic-bezier(.2,.7,.2,1), filter .30s ease;
  transform-origin: center;
}
.digital-piece img {
  display: block;
  width: 100%;
  height: auto;
}
.digital-piece:hover {
  z-index: 60;
  transform: translateY(-7px) scale(1.018);
  filter: drop-shadow(0 20px 26px rgba(0,0,0,.20));
}
.digital-piece--ad { width: 23%; left: 3%; top: 25%; z-index: 4; }
.digital-piece--site { width: 27%; left: 22%; top: 6%; z-index: 3; }
.digital-piece--pinterest { width: 35%; left: 48%; top: 1%; z-index: 5; }
.digital-piece--instagram { width: 33%; left: 66%; top: 28%; z-index: 6; }

/* 5) Magazine: transparent canvas stays invisible; depth follows the actual magazine alpha. */
.magazine-card {
  width: min(1020px, 86vw);
  margin: 0 auto clamp(34px, 5vw, 72px);
  transition: transform .30s cubic-bezier(.2,.7,.2,1);
}
.magazine-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.10));
  transition: filter .30s ease;
}
.magazine-card:hover {
  transform: translateY(-7px) scale(1.012);
}
.magazine-card:hover img {
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.18));
}

/* 6) Packaging reveal: supplied real box states with transparent backgrounds. */
.box-reveal { margin-top: clamp(20px, 3vw, 34px); }
.box-scene { min-height: clamp(430px, 52vw, 720px); }
.box-state {
  width: min(980px, 88vw);
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.10));
}
.retention-card {
  width: min(760px, 66vw);
  filter: drop-shadow(0 20px 32px rgba(0,0,0,.20));
}
.box-button.is-open .box-shell { filter: blur(3px); opacity: .24; transform: scale(.985); }


/* Responsive refinements for the targeted sections. */
@media (max-width: 820px) {
  .moodboard-cluster {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: repeat(3, minmax(0,1fr));
    gap: 9px;
    aspect-ratio: 1 / 1.28;
    max-width: none;
  }
  .moodboard-cluster .mood-card,
  .moodboard-cluster .mood-card--1,
  .moodboard-cluster .mood-card--2,
  .moodboard-cluster .mood-card--3,
  .moodboard-cluster .mood-card--4,
  .moodboard-cluster .mood-card--5,
  .moodboard-cluster .mood-card--6 {
    grid-column: auto !important;
    grid-row: auto !important;
    margin: 0 !important;
  }
  .moodboard-cluster .mood-card img { object-fit: cover; }

  /* Visual world remains an even two-column system instead of breaking into a stagger. */
  .world-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .world-card { aspect-ratio: 16 / 9; }
  .world-card:hover { transform: none; filter: none; }

  /* Three-across blurred rows continue to use the existing shared mobile behavior. */
  .digital-stage { padding: 18px 2px; }
  .digital-canvas { width: 100vw; }
  .digital-piece:hover { transform: none; filter: none; }

  .magazine-card { width: 94vw; }
  .magazine-card:hover { transform: none; }

  .box-state { width: 96vw; }
  .retention-card { width: 82vw; }
}

@media (max-width: 520px) {
  .moodboard-cluster { gap: 7px; }
  .world-grid { gap: 7px; }
  .digital-canvas { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
  .moodboard-cluster .mood-card,
  .digital-piece,
  .magazine-card,
  .magazine-card img { transition: none !important; }
}

@media (max-width: 820px) {
  .moodboard-cluster .mood-card, .moodboard-cluster .mood-card--1, .moodboard-cluster .mood-card--2, .moodboard-cluster .mood-card--3, .moodboard-cluster .mood-card--4, .moodboard-cluster .mood-card--5, .moodboard-cluster .mood-card--6 { width:auto !important; justify-self:stretch !important; }
  .moodboard-cluster .mood-card img { height:100% !important; object-fit:cover !important; }
}
/* Final mobile collage normalization */

/* ============================================================
   Final targeted corrections — 2026-08-17 14:49
   Code-only adjustments. All existing image assets are reused.
   ============================================================ */

/* THE OPPORTUNITY now uses the exact case-label treatment used by other section headings. */
.opportunity-block .case-label--inline {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--page-accent);
}
.opportunity-block > p:last-child { margin-top: 0; }

/* ART DIRECTION: qualities stay intact; reference images become one centered, horizontal cluster. */
.art-direction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 5.4vw, 78px);
  align-items: start;
}
.art-direction-grid .direction-list {
  width: min(100%, 560px);
}
.moodboard-cluster {
  position: relative;
  display: block;
  width: min(1120px, 94vw);
  max-width: none;
  aspect-ratio: 1.78 / 1;
  margin: 0 auto;
  align-self: auto;
  isolation: isolate;
  overflow: visible;
}
.moodboard-cluster .mood-card,
.moodboard-cluster .mood-card--1,
.moodboard-cluster .mood-card--2,
.moodboard-cluster .mood-card--3,
.moodboard-cluster .mood-card--4,
.moodboard-cluster .mood-card--5,
.moodboard-cluster .mood-card--6 {
  position: absolute;
  display: block;
  margin: 0;
  min-width: 0;
  overflow: visible;
  background: transparent;
  z-index: 1;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), filter .28s ease;
}
.moodboard-cluster .mood-card img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
}
.moodboard-cluster .mood-card--1 { width: 27%; left: 3%; top: 7%; }
.moodboard-cluster .mood-card--2 { width: 22%; left: 0; top: 56%; }
.moodboard-cluster .mood-card--3 { width: 30%; left: 27%; top: 27%; }
.moodboard-cluster .mood-card--4 { width: 25%; left: 50%; top: 7%; }
.moodboard-cluster .mood-card--5 { width: 24%; right: 1%; top: 20%; }
.moodboard-cluster .mood-card--6 { width: 34%; right: 3%; top: 54%; }
.moodboard-cluster .mood-card:hover,
.moodboard-cluster .mood-card.is-front {
  z-index: 90;
  transform: translateY(-6px) scale(1.014);
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.13));
}

/* VISUAL WORLD: controlled two-row offset — upper pair left, lower pair right. */
.world-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(12px, 1.8vw, 28px);
  row-gap: clamp(20px, 3.3vw, 52px);
  align-items: start;
  width: min(1360px, 100%);
  margin: 0 auto;
  padding-inline: clamp(4px, 1.4vw, 20px);
}
.world-card,
.world-card--1,
.world-card--2,
.world-card--3,
.world-card--4 {
  margin: 0 !important;
  aspect-ratio: auto !important;
  overflow: visible;
}
.world-card img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
}
.world-card--1 { grid-column: 1 / span 5 !important; }
.world-card--2 { grid-column: 6 / span 6 !important; margin-top: clamp(16px, 2.2vw, 34px) !important; }
.world-card--3 { grid-column: 3 / span 4 !important; }
.world-card--4 { grid-column: 8 / span 4 !important; margin-top: clamp(8px, 1.4vw, 22px) !important; }

/* Shared blurred presentation treatment for Campaign, Product Presentation and Digital.
   It keeps the supplied foreground assets sharp while echoing the OOH + Print palette. */
.blur-stage::before {
  filter: blur(32px) saturate(.9) brightness(.76);
  transform: scale(1.1);
}
.blur-stage::after {
  background: linear-gradient(145deg,
    rgba(123,104,93,.22) 0%,
    rgba(36,62,88,.28) 58%,
    rgba(23,49,75,.24) 100%);
}

/* DIGITAL: keep the full composition intact; the two phones overlap and scale as one group. */
.digital-stage { padding: clamp(28px, 4.8vw, 70px) max(5px, 2.2vw); }
.digital-canvas {
  position: relative;
  width: min(1320px, 96vw);
  aspect-ratio: 16 / 8.4;
  margin: 0 auto;
  isolation: isolate;
  overflow: visible;
}
.digital-piece {
  position: absolute;
  margin: 0;
  z-index: 1;
  transform-origin: center;
  transition: transform .30s cubic-bezier(.2,.7,.2,1), filter .30s ease;
}
.digital-piece img {
  display: block;
  width: 100%;
  height: auto;
}
/* Crop the heavy border already baked into the two rectangular source images,
   then restore the same thin 1px Hampys-blue edge used in OOH + Print. */
.digital-piece--ad,
.digital-piece--site {
  overflow: hidden;
  outline: 1px solid var(--hampys-blue);
  outline-offset: -1px;
}
.digital-piece--ad img,
.digital-piece--site img {
  width: calc(100% + 6px);
  max-width: none;
  margin: -3px;
}
.digital-piece--ad { width: 25%; left: 3%; top: 24%; z-index: 4; }
.digital-piece--site { width: 29%; left: 21%; top: 6%; z-index: 3; }
.digital-piece--pinterest { width: 41%; left: 46%; top: 0; z-index: 5; }
.digital-piece--instagram { width: 40%; left: 59%; top: 27%; z-index: 6; }
.digital-piece:hover,
.digital-piece.is-front {
  z-index: 90;
  transform: translateY(-7px) scale(1.018);
  filter: drop-shadow(0 20px 26px rgba(0,0,0,.20));
}

/* Touch/keyboard-selected overlap state mirrors hover without changing default positioning. */
.ooh-card.is-front {
  z-index: 90;
  transform: translateY(-8px) scale(1.025);
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.24));
}

/* NEXT LAYER: scroll position, not a timer/hover state, drives every visual phase. */
.box-reveal {
  position: relative;
  height: clamp(980px, 148vh, 1500px);
  margin-top: clamp(20px, 3vw, 34px);
}
.box-button {
  position: sticky;
  top: clamp(72px, 10vh, 112px);
  height: min(78vh, 720px);
  min-height: 430px;
  display: block;
  cursor: default;
}
.box-scene {
  height: 100%;
  min-height: 0;
}
.box-shell,
.box-state,
.retention-card {
  transition: none !important;
  will-change: opacity, transform, filter;
}
@media (max-width: 820px) {
  /* Art-direction cluster never wraps or stacks; the whole composition simply scales down. */
  .art-direction-grid { gap: 34px; }
  .moodboard-cluster {
    display: block;
    width: calc(100vw - (2 * var(--gutter)));
    max-width: none;
    aspect-ratio: 1.78 / 1;
    margin-inline: auto;
  }
  .moodboard-cluster .mood-card,
  .moodboard-cluster .mood-card--1,
  .moodboard-cluster .mood-card--2,
  .moodboard-cluster .mood-card--3,
  .moodboard-cluster .mood-card--4,
  .moodboard-cluster .mood-card--5,
  .moodboard-cluster .mood-card--6 {
    position: absolute !important;
    width: auto;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
  }
  .moodboard-cluster .mood-card--1 { width: 27%; left: 3%; top: 7%; }
  .moodboard-cluster .mood-card--2 { width: 22%; left: 0; top: 56%; }
  .moodboard-cluster .mood-card--3 { width: 30%; left: 27%; top: 27%; }
  .moodboard-cluster .mood-card--4 { width: 25%; left: 50%; top: 7%; }
  .moodboard-cluster .mood-card--5 { width: 24%; right: 1%; left: auto; top: 20%; }
  .moodboard-cluster .mood-card--6 { width: 34%; right: 3%; left: auto; top: 54%; }

  /* Preserve the offset Visual World relationship at narrow widths instead of rigid centering. */
  .world-grid {
    grid-template-columns: repeat(12, minmax(0,1fr));
    column-gap: 7px;
    row-gap: 14px;
    padding-inline: 0;
  }
  .world-card--1 { grid-column: 1 / span 5 !important; }
  .world-card--2 { grid-column: 6 / span 6 !important; margin-top: 10px !important; }
  .world-card--3 { grid-column: 3 / span 4 !important; }
  .world-card--4 { grid-column: 8 / span 4 !important; margin-top: 5px !important; }

  /* Digital stays one composition; no phone or rectangular asset stacks vertically. */
  .digital-stage { padding: 20px 2px; }
  .digital-canvas {
    width: 100vw;
    aspect-ratio: 16 / 8.4;
  }
  .digital-piece--ad { width: 25%; left: 3%; top: 24%; }
  .digital-piece--site { width: 29%; left: 21%; top: 6%; }
  .digital-piece--pinterest { width: 41%; left: 46%; top: 0; }
  .digital-piece--instagram { width: 40%; left: 59%; top: 27%; }

  .box-reveal { height: 138vh; }
  .box-button {
    top: max(62px, 8vh);
    height: min(74vh, 640px);
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .moodboard-cluster { width: calc(100vw - (2 * var(--gutter))); }
  .world-grid { column-gap: 5px; row-gap: 10px; }
  .digital-canvas { aspect-ratio: 16 / 8.4; }
  .box-reveal { height: 132vh; }
  .box-button { min-height: 330px; }
}

@media (hover: none), (pointer: coarse) {
  .moodboard-cluster .mood-card:hover,
  .digital-piece:hover,
  .ooh-card:hover {
    transform: none;
    filter: none;
  }
  .moodboard-cluster .mood-card.is-front {
    transform: translateY(-4px) scale(1.012);
    filter: drop-shadow(0 14px 20px rgba(0,0,0,.12));
  }
  .digital-piece.is-front {
    transform: translateY(-5px) scale(1.014);
    filter: drop-shadow(0 16px 22px rgba(0,0,0,.18));
  }
  .ooh-card.is-front {
    transform: translateY(-5px) scale(1.018);
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.20));
  }
}

@media (prefers-reduced-motion: reduce) {
  .moodboard-cluster .mood-card,
  .digital-piece,
  .ooh-card { transition: none !important; }
}


/* ============================================================
   HAMPYS — targeted revision 2026-08-17 15:31
   Layout/interaction corrections only. Existing page system retained.
   ============================================================ */

/* 1) Parallel strategy columns: identical heading/subcopy treatment. */
.strategy-pair {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 7vw, 110px);
  align-items: start;
}
.strategy-column .case-label {
  margin: 0 0 20px;
}
.strategy-column h2 {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.01em;
  color: inherit;
}

/* 2) ART DIRECTION — copy and the intended spread-out collage sit side-by-side
      on desktop. The collage is a single responsive coordinate system, so on
      smaller screens the whole composition scales rather than reorganizing. */
.art-direction-grid {
  width: min(1460px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.42fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: center;
}
.art-direction-grid .direction-list {
  width: 100%;
  max-width: 520px;
}
.moodboard-cluster {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1.62 / 1 !important;
  margin: 0 !important;
  overflow: visible !important;
  isolation: isolate;
}
.moodboard-cluster .mood-card,
.moodboard-cluster .mood-card--1,
.moodboard-cluster .mood-card--2,
.moodboard-cluster .mood-card--3,
.moodboard-cluster .mood-card--4,
.moodboard-cluster .mood-card--5,
.moodboard-cluster .mood-card--6 {
  position: absolute !important;
  display: block !important;
  margin: 0 !important;
  min-width: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), filter .28s ease;
}
.moodboard-cluster .mood-card img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  outline-width: 1px !important;
}
/* Relative placements preserve the approved horizontal composition. */
.moodboard-cluster .mood-card--1 { width: 29% !important; left: 3% !important; top: 5% !important; z-index: 2; }
.moodboard-cluster .mood-card--2 { width: 23% !important; left: 0% !important; top: 57% !important; z-index: 1; }
.moodboard-cluster .mood-card--3 { width: 31% !important; left: 28% !important; top: 25% !important; z-index: 4; }
.moodboard-cluster .mood-card--4 { width: 27% !important; left: 55% !important; top: 5% !important; z-index: 3; }
.moodboard-cluster .mood-card--5 { width: 23% !important; left: 76% !important; right: auto !important; top: 20% !important; z-index: 5; }
.moodboard-cluster .mood-card--6 { width: 34% !important; left: 65% !important; right: auto !important; top: 55% !important; z-index: 6; }
@media (hover:hover) and (pointer:fine) {
  .moodboard-cluster .mood-card:hover,
  .moodboard-cluster .mood-card.is-front {
    z-index: 90 !important;
    transform: translateY(-5px) scale(1.012) !important;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,.13)) !important;
  }
}

/* 3) VISUAL WORLD — four supplied 16:9 assets are shown as-is, at the same
      visual size, with the subtle two-row editorial offset retained. */
.world-grid {
  width: min(1320px, 100%) !important;
  margin: 0 auto !important;
  padding-inline: clamp(2px, .7vw, 10px) !important;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0,1fr)) !important;
  column-gap: clamp(10px, 1.6vw, 24px) !important;
  row-gap: clamp(18px, 2.7vw, 42px) !important;
  align-items: start !important;
}
.world-card,
.world-card--1,
.world-card--2,
.world-card--3,
.world-card--4 {
  margin: 0 !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), filter .28s ease !important;
}
.world-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}
.world-card--1 { grid-column: 1 / span 5 !important; }
.world-card--2 { grid-column: 6 / span 5 !important; margin-top: clamp(10px,1.4vw,22px) !important; }
.world-card--3 { grid-column: 3 / span 5 !important; }
.world-card--4 { grid-column: 8 / span 5 !important; margin-top: clamp(6px,1vw,16px) !important; }
@media (hover:hover) and (pointer:fine) {
  .world-card:hover {
    z-index: 40 !important;
    transform: translateY(-5px) scale(1.012) !important;
    filter: drop-shadow(0 17px 24px rgba(0,0,0,.13)) !important;
  }
}

/* 4/5/6/7) Shared sharp-over-blur presentation system. The foreground layout
             remains unchanged; only the former flat/gray fill becomes the
             enlarged, centered and heavily blurred section image. */
.blur-stage {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: transparent !important;
  padding-block: clamp(58px, 6.2vw, 96px) !important;
}
.blur-stage::before {
  content: "" !important;
  position: absolute !important;
  inset: -54px !important;
  z-index: 0 !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: blur(42px) saturate(.90) brightness(.80) !important;
  transform: scale(1.16) !important;
  pointer-events: none !important;
}
.blur-stage::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(145deg,
    rgba(123,104,93,.14) 0%,
    rgba(36,62,88,.20) 58%,
    rgba(23,49,75,.18) 100%) !important;
  pointer-events: none !important;
}
.campaign-stage::before { background-image: url("../assets/hampys-12.png") !important; }
.product-stage::before { background-image: url("../assets/hampys-16.png") !important; }
.digital-stage::before { background-image: url("../assets/hampys-12.png") !important; }
.blur-stage > .blur-row,
.blur-stage > .digital-canvas {
  position: relative !important;
  z-index: 2 !important;
}
.blur-row {
  width: min(1240px, 90vw) !important;
  margin: 0 auto !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: clamp(10px, 1.8vw, 28px) !important;
  align-items: center !important;
}
.blur-card {
  position: relative !important;
  z-index: 2 !important;
  transition: transform .30s cubic-bezier(.2,.7,.2,1), filter .30s ease !important;
}
@media (hover:hover) and (pointer:fine) {
  .campaign-stage .blur-card:hover,
  .product-stage .blur-card:hover {
    z-index: 50 !important;
    transform: translateY(-6px) scale(1.016) !important;
    filter: drop-shadow(0 19px 26px rgba(0,0,0,.19)) !important;
  }
}

/* DIGITAL — the left pair sits as one balanced vertical grouping while the
   two transparent phone PNGs overlap in their default state. */
.digital-stage {
  padding-inline: max(6px, 2vw) !important;
}
.digital-canvas {
  position: relative !important;
  width: min(1240px, 90vw) !important;
  aspect-ratio: 16 / 8.65 !important;
  margin: 0 auto !important;
  isolation: isolate !important;
  overflow: visible !important;
}
.digital-piece {
  position: absolute !important;
  margin: 0 !important;
  transform-origin: center !important;
  transition: transform .30s cubic-bezier(.2,.7,.2,1), filter .30s ease !important;
}
.digital-piece img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}
/* The two rectangular source assets contain a baked blue edge. The wrapper
   trims only that supplied edge, then restores the site's standard 1px line. */
.digital-piece--ad,
.digital-piece--site {
  overflow: hidden !important;
  outline: 1px solid var(--hampys-blue) !important;
  outline-offset: -1px !important;
}
.digital-piece--ad img,
.digital-piece--site img {
  width: calc(100% + 8px) !important;
  max-width: none !important;
  margin: -4px !important;
}
.digital-piece--ad { width: 22% !important; left: 3% !important; top: 30% !important; z-index: 4 !important; }
.digital-piece--site { width: 25.5% !important; left: 21% !important; top: 6% !important; z-index: 3 !important; }
.digital-piece--pinterest { width: 42% !important; left: 45% !important; top: 1% !important; z-index: 5 !important; }
.digital-piece--instagram { width: 42% !important; left: 58% !important; top: 28% !important; z-index: 6 !important; }
@media (hover:hover) and (pointer:fine) {
  .digital-piece:hover,
  .digital-piece.is-front {
    z-index: 90 !important;
    transform: translateY(-6px) scale(1.015) !important;
    filter: drop-shadow(0 19px 26px rgba(0,0,0,.19)) !important;
  }
}

/* 9) Restore the previous restrained magazine pop without exposing its
      transparent canvas as a rectangle. */
.magazine-card {
  transition: transform .30s cubic-bezier(.2,.7,.2,1) !important;
}
.magazine-card img {
  transition: filter .30s ease !important;
}
@media (hover:hover) and (pointer:fine) {
  .magazine-card:hover {
    transform: translateY(-7px) scale(1.012) !important;
  }
  .magazine-card:hover img {
    filter: drop-shadow(0 22px 30px rgba(0,0,0,.18)) !important;
  }
}

/* 8) NEXT LAYER is now scroll-only. There is no hover/click playback. */
.box-reveal {
  height: clamp(1500px, 225vh, 2400px) !important;
  margin-top: clamp(20px,3vw,34px) !important;
}
.box-button {
  position: sticky !important;
  top: clamp(72px, 10vh, 112px) !important;
  height: min(78vh, 720px) !important;
  min-height: 430px !important;
  cursor: default !important;
  pointer-events: none !important;
}
.box-shell,
.box-state,
.retention-card {
  transition: none !important;
  will-change: opacity, transform, filter;
}

/* Responsive adaptation: preserve every composition, scale groups as units. */
@media (max-width: 900px) {
  .art-direction-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(28px, 6vw, 44px) !important;
  }
  .art-direction-grid .direction-list {
    max-width: 560px;
  }
  .moodboard-cluster {
    width: 100% !important;
    aspect-ratio: 1.62 / 1 !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 820px) {
  .strategy-pair {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: clamp(16px, 5vw, 28px) !important;
  }
  .strategy-column .case-label { margin-bottom: 14px; }
  .strategy-column h2 { font-size: clamp(15px, 4vw, 18px); line-height: 1.2; }

  .moodboard-cluster,
  .moodboard-cluster .mood-card,
  .moodboard-cluster .mood-card img {
    object-fit: contain !important;
  }

  .world-grid {
    grid-template-columns: repeat(12,minmax(0,1fr)) !important;
    column-gap: 6px !important;
    row-gap: 12px !important;
    padding-inline: 0 !important;
  }
  .world-card--1 { grid-column: 1 / span 5 !important; }
  .world-card--2 { grid-column: 6 / span 5 !important; margin-top: 7px !important; }
  .world-card--3 { grid-column: 3 / span 5 !important; }
  .world-card--4 { grid-column: 8 / span 5 !important; margin-top: 4px !important; }

  .blur-stage {
    padding-block: clamp(28px, 8vw, 44px) !important;
  }
  .blur-row {
    width: 92vw !important;
    gap: 7px !important;
  }
  .digital-canvas {
    width: 94vw !important;
    aspect-ratio: 16 / 8.65 !important;
  }
  .digital-piece--ad { width: 22% !important; left: 3% !important; top: 30% !important; }
  .digital-piece--site { width: 25.5% !important; left: 21% !important; top: 6% !important; }
  .digital-piece--pinterest { width: 42% !important; left: 45% !important; top: 1% !important; }
  .digital-piece--instagram { width: 42% !important; left: 58% !important; top: 28% !important; }

  .box-reveal { height: 215vh !important; }
  .box-button {
    top: max(62px, 8vh) !important;
    height: min(74vh, 640px) !important;
    min-height: 350px !important;
  }
}

@media (max-width: 520px) {
  .strategy-pair { gap: 14px !important; }
  .strategy-column h2 { font-size: 15px; }
  .moodboard-cluster { width: 100% !important; }
  .blur-row { width: 94vw !important; gap: 5px !important; }
  .digital-canvas { width: 96vw !important; }
  .box-reveal { height: 210vh !important; }
  .box-button { min-height: 330px !important; }
}

@media (hover:none), (pointer:coarse) {
  .moodboard-cluster .mood-card.is-front {
    z-index: 90 !important;
    transform: translateY(-3px) scale(1.01) !important;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,.12)) !important;
  }
  .digital-piece.is-front {
    z-index: 90 !important;
    transform: translateY(-4px) scale(1.012) !important;
    filter: drop-shadow(0 14px 20px rgba(0,0,0,.17)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moodboard-cluster .mood-card,
  .world-card,
  .blur-card,
  .digital-piece,
  .magazine-card,
  .magazine-card img {
    transition: none !important;
  }
}


/* HAMPYS OOH — Koss-style integrated white artboard; original Hampys card arrangement retained. */
.hampys-ooh-presentation {
  position: relative;
  width: min(1240px, calc(100vw - (2 * var(--gutter))));
  aspect-ratio: 2.72 / 1;
  margin: clamp(24px, 3.5vw, 46px) auto 0;
  overflow: visible;
}
.hampys-ooh-presentation .hampys-ooh-magazine {
  position: absolute !important;
  left: 0 !important;
  top: 5% !important;
  width: 35% !important;
  margin: 0 !important;
  z-index: 8;
}
.hampys-ooh-presentation .hampys-ooh-magazine img {
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
.hampys-ooh-presentation .ooh-stage--moodboard {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: 57.5% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1.82 / 1 !important;
  margin: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}
.hampys-ooh-presentation .ooh-stage--moodboard::before,
.hampys-ooh-presentation .ooh-stage--moodboard::after {
  content: none !important;
  display: none !important;
}
.hampys-ooh-presentation .ooh-card {
  position: absolute !important;
  margin: 0 !important;
}
.hampys-ooh-presentation .ooh-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
.hampys-ooh-presentation .ooh-card--1 { width: 35% !important; left: 4% !important; top: 8% !important; }
.hampys-ooh-presentation .ooh-card--2 { width: 37% !important; left: 33% !important; top: 4% !important; }
.hampys-ooh-presentation .ooh-card--3 { width: 48% !important; right: 4% !important; top: 31% !important; }
.hampys-ooh-presentation .ooh-card--4 { width: 46% !important; left: 13% !important; top: 48% !important; }
@media (hover:hover) and (pointer:fine) {
  .hampys-ooh-presentation .ooh-card:hover {
    z-index: 60 !important;
  }
}
.hampys-ooh-presentation .ooh-card.is-front { z-index: 70 !important; }
@media (max-width: 820px) {
  .hampys-ooh-presentation {
    width: calc(100vw - (2 * var(--gutter)));
    max-width: none;
    margin-top: 24px;
  }
}

/* CAMPAIGN PROJECT NAVIGATION */
.case-project-nav {
  padding: clamp(72px, 9vw, 128px) var(--gutter) clamp(58px, 7vw, 96px);
}
.case-project-nav-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}
.case-project-nav-link > span:first-child {
  font-size: clamp(30px, 5.2vw, 76px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.045em;
}
.case-project-nav-arrow {
  font-size: clamp(24px, 3.3vw, 48px);
  font-weight: 300;
  transition: transform .25s ease;
}
@media (hover:hover) and (pointer:fine) {
  .case-project-nav-link:hover .case-project-nav-arrow,
  .case-project-nav-link:focus-visible .case-project-nav-arrow {
    transform: translateX(6px);
  }
}
@media (max-width: 520px) {
  .case-project-nav-link { gap: 14px; }
  .case-project-nav-link > span:first-child { font-size: clamp(27px, 9vw, 42px); }
}
/* =========================================================
   HAMPYS — DIGITAL
   Mirrors Koss Digital treatment
   ========================================================= */

.hampys-digital-section {
  margin-top: clamp(4rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.hampys-digital-section .case-label {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.hampys-digital-composition {
  position: relative;
  width: min(92vw, 1320px);
  height: clamp(430px, 51vw, 710px);
  margin-inline: auto;
}


/* Transparent PNG containers */

.hampys-digital-item {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;

  transition:
    transform 260ms ease,
    filter 260ms ease;

  transform-origin: center center;
}

.hampys-digital-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(
    0 16px 22px rgba(0, 0, 0, 0.12)
  );
}


/* Laptop — dominant left object */

.hampys-digital-item--laptop {
  width: 50%;
  left: 2%;
  top: 5%;
  z-index: 1;
}


/* Phone — smaller right object */

.hampys-digital-item--phone {
  width: 35%;
  right: 4%;
  top: 12%;
  z-index: 2;
}


/* Desktop hover */

@media (hover: hover) and (pointer: fine) {

  .hampys-digital-item:hover {
    transform: translateY(-7px) scale(1.018);
    z-index: 10;
  }

  .hampys-digital-item:hover img {
    filter: drop-shadow(
      0 21px 28px rgba(0, 0, 0, 0.16)
    );
  }
}


@media (max-width: 900px) {

  .hampys-digital-composition {
    width: 94vw;
    height: 57vw;
    min-height: 340px;
  }

  .hampys-digital-item--laptop {
    width: 59%;
    left: 0;
    top: 8%;
  }

  .hampys-digital-item--phone {
    width: 39%;
    right: 1%;
    top: 15%;
  }
}

@media (max-width: 600px) {

  .hampys-digital-section {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .hampys-digital-section .case-label {
    margin-bottom: 2.5rem;
  }

  .hampys-digital-composition {
    width: 96vw;
    height: 60vw;
    min-height: 255px;
  }

  .hampys-digital-item--laptop {
    width: 61%;
    left: -1%;
    top: 6%;
  }

  .hampys-digital-item--phone {
    width: 40%;
    right: 0;
    top: 14%;
  }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

  .hampys-digital-item,
  .hampys-digital-item img {
    transition: none;
  }
}

@media (min-width: 901px) {

  .hampys-digital-section {
    margin-bottom: 0 !important;
  }

  .hampys-digital-composition {
    height: clamp(400px, 40vw, 520px) !important;
  }

  .hampys-digital-section + .hampys-ooh-section {
    padding-top: clamp(28px, 2.5vw, 44px) !important;
  }

}
/* =========================================================
   CAMPAIGN PROJECT NAV — blurred translucent full-width bar
   ========================================================= */

.case-project-nav {
  width: 100%;

  /* Keep project handoff closer to the final imagery */
  padding:
    clamp(30px, 4vw, 52px)
    var(--gutter)
    clamp(48px, 5vw, 72px) !important;
}


/* Full-width rectangle — same span as footer rule */

.case-project-nav-link {
  --project-nav-bg: var(--page-accent);

  position: relative;
  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: none;

  padding: clamp(14px, 1.3vw, 18px)
           clamp(16px, 1.6vw, 22px);

  border: 0 !important;
  border-top: 0 !important;
  border-radius: 0;

  background: rgba(255, 255, 255, 0.03);

  color: #fff !important;
  text-decoration: none;

  overflow: hidden;

  -webkit-backdrop-filter: blur(18px) saturate(110%);
  backdrop-filter: blur(18px) saturate(110%);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}


/* Soft blurred campaign-color layer */

.case-project-nav-link::before {
  content: "";

  position: absolute;
  inset: -14px;
  z-index: -1;

  background: var(--project-nav-bg);
  opacity: 0.48;

  filter: blur(12px);
  transform: scale(1.03);

  transition:
    opacity 200ms ease,
    filter 200ms ease;
}


/* "Next: Koss Campaign" / "Next: Hampys Campaign" */

.case-project-nav-link > span:first-child {
  color: #fff !important;

  font-size: clamp(14px, 1.15vw, 17px) !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  letter-spacing: 0 !important;
}


/* Arrow */

.case-project-nav-arrow {
  color: #fff !important;

  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 300 !important;
  line-height: 1;

  transition: transform 200ms ease;
}


/* Subtle hover */

@media (hover: hover) and (pointer: fine) {

  .case-project-nav-link:hover::before,
  .case-project-nav-link:focus-visible::before {
    opacity: 0.62;
    filter: blur(15px);
  }

  .case-project-nav-link:hover,
  .case-project-nav-link:focus-visible {
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.10);
  }

  .case-project-nav-link:hover .case-project-nav-arrow,
  .case-project-nav-link:focus-visible .case-project-nav-arrow {
    transform: translateX(4px);
  }
}


/* Mobile */

@media (max-width: 520px) {

  .case-project-nav {
    padding:
      26px
      var(--gutter)
      46px !important;
  }

  .case-project-nav-link {
    padding: 13px 14px;

    -webkit-backdrop-filter: blur(16px) saturate(110%);
    backdrop-filter: blur(16px) saturate(110%);
  }

  .case-project-nav-link::before {
    filter: blur(10px);
  }

  .case-project-nav-link > span:first-child {
    font-size: 14px !important;
  }

  .case-project-nav-arrow {
    font-size: 15px !important;
  }

}