html.static-enhanced [data-static-hero] [data-static-hero-photo] {
  transform-origin: center;
  will-change: transform;
  animation: staticHeroPhotoIn 1200ms cubic-bezier(.25,.46,.45,.94) both;
}

html.static-enhanced [data-static-hero] [data-static-hero-img] {
  transform-origin: center;
  will-change: transform;
  animation: staticHeroImageDrift 18s ease-in-out infinite alternate;
}

html.static-enhanced [data-static-hero] h1,
html.static-enhanced [data-static-hero] .font-cormorant,
html.static-enhanced [data-static-hero] .font-raleway {
  will-change: transform, opacity;
}

html.static-enhanced [data-static-hero] h1 {
  animation: staticHeroTextIn 900ms cubic-bezier(.25,.46,.45,.94) both;
}

html.static-enhanced [data-static-hero] h1 + div,
html.static-enhanced [data-static-hero] h1 + span {
  animation: staticHeroTextIn 1050ms cubic-bezier(.25,.46,.45,.94) 120ms both;
}

html.static-enhanced [data-static-hero] .h-px,
html.static-enhanced [data-static-hero] .w-px {
  animation: staticHeroLineIn 950ms cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes staticHeroPhotoIn {
  from { opacity: .72; filter: saturate(.9) contrast(.94); clip-path: inset(0 0 7% 0); }
  to { opacity: 1; filter: saturate(1) contrast(1); clip-path: inset(0 0 0 0); }
}

@keyframes staticHeroImageDrift {
  from { transform: translate3d(-1.2%, -0.8%, 0) scale(1.035); }
  to { transform: translate3d(1.2%, 0.8%, 0) scale(1.075); }
}

@keyframes staticHeroTextIn {
  from { opacity: 0; transform: translate3d(0, 34px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes staticHeroLineIn {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.static-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(12, 12, 11, .9);
  backdrop-filter: blur(18px);
  overflow-y: auto;
  padding: 24px;
  animation: staticLightboxIn 220ms ease-out both;
}

.static-lightbox__close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, .7);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  cursor: pointer;
}

.static-lightbox__shell {
  width: min(1180px, calc(100vw - 48px));
  margin: 56px auto 24px;
  border: 1px solid rgba(201, 169, 110, .42);
  border-radius: 30px;
  background: rgba(28, 28, 28, .82);
  box-shadow: 0 32px 96px rgba(0, 0, 0, .5);
  overflow: hidden;
}

.static-lightbox__intro {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 22px 28px;
  background: linear-gradient(180deg, rgba(28,28,28,.98), rgba(28,28,28,.84));
  border-bottom: 1px solid rgba(201, 169, 110, .22);
}

.static-lightbox__meta,
.static-lightbox__count,
.static-lightbox__tag {
  font-family: Raleway, Arial, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.static-lightbox__meta,
.static-lightbox__count {
  color: #d5b878;
  font-size: 11px;
}

.static-lightbox__title {
  margin: 8px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: #f8f3ec;
}

.static-lightbox__description {
  max-width: 760px;
  color: rgba(248, 243, 236, .72);
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.static-lightbox__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.static-lightbox__tag {
  border: 1px solid rgba(201, 169, 110, .26);
  border-radius: 999px;
  color: rgba(248, 243, 236, .68);
  font-size: 9px;
  padding: 7px 10px;
}

.static-lightbox__gallery {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.static-lightbox__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .08);
}

.static-lightbox__figure img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.static-lightbox__count {
  position: absolute;
  left: 16px;
  bottom: 14px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(12,12,11,.62);
  backdrop-filter: blur(10px);
}

@keyframes staticLightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 720px) {
  .static-lightbox { padding: 12px; }
  .static-lightbox__shell { width: calc(100vw - 24px); margin-top: 58px; border-radius: 22px; }
  .static-lightbox__intro { padding: 18px; }
  .static-lightbox__gallery { padding: 12px; }
  .static-lightbox__figure { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html.static-enhanced [data-static-hero] *,
  .static-lightbox {
    animation: none !important;
    transition: none !important;
  }
}