@import url('/static/site-theme.css?v=172');
@import url('/static/page-transitions.css?v=172');
@import url('/static/site-motion.css?v=172');

:root {
  --bg: #050505;
  --hover-color-duration: 1.4s;
  --hover-color-easing: cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link-active,
.nav-links a.active {
  opacity: 1 !important;
  color: var(--theme-white) !important;
  border-bottom: 1px solid var(--theme-white) !important;
  padding-bottom: 0.35rem !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  filter: none !important;
}

/* ── Site nav (classic: full caps, wide tracking, active underline) ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  box-sizing: border-box;
  background: transparent;
  flex-wrap: nowrap;
}

/* Nav shell stays normal; logo block inverts against page content behind it */
nav.mix-blend-difference {
  mix-blend-mode: normal !important;
}

html[data-theme-mode] nav .nav-plus-btn {
  mix-blend-mode: normal !important;
}

nav.mix-blend-difference .site-nav-brand {
  mix-blend-mode: difference !important;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 1;
}

html.nav-over-light nav.mix-blend-difference .site-nav-brand {
  mix-blend-mode: normal !important;
}

html.nav-over-light nav.mix-blend-difference .site-nav-brand .site-brand,
html.nav-over-light nav.mix-blend-difference .site-nav-brand .site-nav-tagline {
  color: var(--theme-black) !important;
  opacity: 1 !important;
}

html.nav-over-light nav.mix-blend-difference .site-nav-brand .site-nav-tagline {
  opacity: 0.55 !important;
}

html.nav-over-light nav.mix-blend-difference .site-nav-brand .site-brand + div {
  background: color-mix(in srgb, var(--theme-black) 20%, transparent) !important;
}

nav.mix-blend-difference .site-nav-right {
  flex-shrink: 0;
  margin-left: auto;
}

nav .site-nav-tagline,
body[data-page="gallery"] nav .site-nav-tagline {
  color: var(--theme-white) !important;
  opacity: 0.55;
  font-size: 10px !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
}

nav .site-brand,
body[data-page="gallery"] nav > div:first-child > a {
  color: var(--theme-white) !important;
  text-decoration: none !important;
}

/* LNDTVSL uses --theme-nav-brand (see site-theme.css); gallery nav has no invert wrapper */
body[data-page="gallery"] nav .site-brand {
  color: var(--theme-nav-brand, var(--theme-white)) !important;
}

nav .nav-links {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 2.25rem !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  nav .nav-links {
    gap: 1.85rem !important;
  }
}

nav .nav-links a {
  display: inline-block;
  color: color-mix(in srgb, var(--theme-white) 55%, transparent) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: 1px solid transparent !important;
  padding: 0 0 0.35rem !important;
  margin: 0 !important;
  background: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

nav .nav-links a:hover {
  color: var(--theme-white) !important;
  opacity: 1 !important;
}

nav .nav-links a.active {
  color: var(--theme-white) !important;
  opacity: 1 !important;
  border-bottom-color: var(--theme-white) !important;
}

nav .nav-plus-btn {
  color: var(--theme-white) !important;
  border-color: color-mix(in srgb, var(--theme-white) 45%, transparent) !important;
  background: transparent !important;
  mix-blend-mode: difference !important;
  text-shadow: none !important;
  filter: none !important;
  -webkit-text-stroke: 0 !important;
}

nav .nav-plus-btn:hover {
  border-color: var(--theme-white) !important;
  background: color-mix(in srgb, var(--theme-white) 8%, transparent) !important;
  transform: scale(1.05);
}

nav .nav-menu-toggle {
  mix-blend-mode: normal !important;
}

nav .nav-menu-bar {
  background: var(--theme-white);
  box-shadow: none;
  filter: none;
}

nav .nav-newsletter-mobile {
  color: color-mix(in srgb, var(--theme-white) 55%, transparent) !important;
  text-shadow: none !important;
  filter: none !important;
}

nav .nav-newsletter-mobile:hover {
  color: var(--theme-white) !important;
}

/* ── Mobile burger menu ── */
.site-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 160;
  flex-shrink: 0;
}

.nav-menu-bar {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

html.nav-menu-open .nav-menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

html.nav-menu-open .nav-menu-bar:nth-child(2) {
  opacity: 0;
}

html.nav-menu-open .nav-menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

html.nav-menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  nav {
    padding: 0 1.25rem;
  }

  html.nav-menu-open nav.mix-blend-difference {
    mix-blend-mode: normal;
  }

  .nav-menu-toggle {
    display: flex;
  }

  .nav-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 155;
    mix-blend-mode: normal;
    isolation: isolate;
    background: var(--bg, #050505);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile-menu .nav-links {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.75rem !important;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
  }

  .nav-mobile-menu .nav-links a,
  .nav-mobile-menu .nav-links button,
  .nav-mobile-menu .nav-newsletter-mobile {
    color: var(--theme-white) !important;
    opacity: 1 !important;
    font-size: 11px !important;
    letter-spacing: 0.45em !important;
    padding-bottom: 0.5rem !important;
    text-shadow: none !important;
    filter: none !important;
  }
}

@media (min-width: 768px) {
  .nav-mobile-menu {
    position: static;
    background: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
  }

  /* Floating block behind nav links — matches page background */
  nav .nav-links-float {
    background-color: var(--theme-bg) !important;
    padding: 0.85rem 1.5rem;
    mix-blend-mode: normal !important;
    isolation: isolate;
    flex-shrink: 0;
  }

  nav .nav-links-float a,
  nav .nav-links-float a:hover,
  nav .nav-links-float a.active {
    color: var(--theme-white) !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-stroke-width: 0 !important;
    -webkit-text-fill-color: var(--theme-white) !important;
    text-shadow: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  nav .nav-links-float a {
    opacity: 0.55 !important;
  }

  nav .nav-links-float a:hover,
  nav .nav-links-float a.active {
    opacity: 1 !important;
    border-bottom-color: var(--theme-white) !important;
  }

  .site-nav-right {
    gap: 3rem;
  }
}

.filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.gallery-download-btn,
.brand-btn-white,
[data-button-id] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 0 !important;
  padding: calc(1rem * var(--btn-scale, var(--theme-button-scale, 1))) calc(2rem * var(--btn-scale, var(--theme-button-scale, 1))) !important;
  background: var(--btn-bg, var(--theme-button-bg)) !important;
  color: var(--btn-text, var(--theme-button-text)) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: calc(10px * var(--btn-scale, var(--theme-button-scale, 1)));
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background 0.35s ease, opacity 0.35s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.gallery-hero-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gallery-action-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gallery-action-buttons .gallery-download-btn,
.gallery-action-buttons [data-button-id] {
  width: 100%;
  min-width: 14rem;
}

@media (max-width: 767px) {
  .gallery-hero-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-action-buttons {
    width: 100%;
  }
}

.gallery-download-btn:hover:not(:disabled),
.brand-btn-white:hover,
[data-button-id]:hover:not(:disabled) {
  background: var(--btn-hover-bg, var(--theme-button-hover-bg, color-mix(in srgb, var(--theme-button-bg) 82%, var(--theme-button-text)))) !important;
  color: var(--btn-text, var(--theme-button-text)) !important;
}

.gallery-download-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

a.site-editable-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.site-editable-link:hover {
  opacity: 0.75;
}

.music-control {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9000;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 5, 5, 0.85);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, transform 0.35s ease, background 0.35s ease;
  backdrop-filter: blur(8px);
}

.music-control.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}

.music-control:hover {
  background: #fff;
  color: #000;
}

.music-control-icon {
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
}

.music-control .music-control-pause { display: none; }
.music-control.is-playing .music-control-play { display: none; }
.music-control.is-playing .music-control-pause { display: block; }

.music-corner-zone {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 7rem;
  height: 7rem;
  z-index: 8999;
  pointer-events: auto;
}

html.hover-black-enabled body:not([data-page="gallery"]) img:not(.site-logo):not([data-site-logo]):not(.hero-slide) {
  filter: grayscale(100%);
  transition: filter var(--hover-color-duration) var(--hover-color-easing) !important;
}

html.hover-black-enabled body:not([data-page="gallery"]) .gallery-item:hover img:not(.site-logo):not([data-site-logo]),
html.hover-black-enabled body[data-page="home"] .group:hover .home-case-img,
html.hover-black-enabled body[data-page="home"] .image-reveal-container:not(#hero-slideshow):hover img,
html.hover-black-enabled body:not([data-page="gallery"]) img:not(.site-logo):not([data-site-logo]):not(.hero-slide):hover,
html.hover-black-enabled body:not([data-page="gallery"]) img:not(.site-logo):not([data-site-logo]):not(.hero-slide):active {
  filter: grayscale(0%) !important;
}

html.hover-black-enabled #hero-slideshow .hero-slide {
  pointer-events: none;
  filter: grayscale(100%);
  transition:
    filter var(--hover-color-duration) var(--hover-color-easing),
    opacity 1s ease-in-out !important;
}

html.hover-black-enabled #hero-slideshow:hover .hero-slide,
html.hover-black-enabled #hero-slideshow:active .hero-slide {
  filter: grayscale(0%) !important;
}

/* ── Home page scroll reveals & case image hover ── */
body[data-page="home"] .reveal-trigger:not(.hero-stagger) {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

body[data-page="home"] .reveal-trigger.active {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"] .reveal-trigger.manifesto-offset.active {
  transform: translateY(5rem);
}

body[data-page="home"] .image-reveal-container:not(#hero-slideshow) {
  overflow: hidden;
}

#hero-slideshow {
  overflow: hidden;
}

body[data-page="home"] .image-reveal-container:not(#hero-slideshow) img {
  transform: scale(1.15);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

body[data-page="home"] .image-reveal-container:not(#hero-slideshow).active img {
  transform: scale(1);
}

body[data-page="home"] .image-parallax-layer {
  width: 100%;
  height: 115%;
  will-change: transform;
}

body[data-page="home"] .image-parallax-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="home"] .home-case-media {
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center center;
}

body[data-page="home"] .home-case-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

body[data-page="home"] .home-case-link--title {
  display: inline;
}

body[data-page="home"] .group:hover .home-case-media {
  transform: scale(1.045);
}

html.heading-hover-enabled h1:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h2:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h3:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h4:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h5:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h6:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h1:not(.heading-hover-exclude):active,
html.heading-hover-enabled h2:not(.heading-hover-exclude):active,
html.heading-hover-enabled h3:not(.heading-hover-exclude):active,
html.heading-hover-enabled h4:not(.heading-hover-exclude):active,
html.heading-hover-enabled h5:not(.heading-hover-exclude):active,
html.heading-hover-enabled h6:not(.heading-hover-exclude):active {
  color: var(--heading-hover-color, #ffffff) !important;
  transition: color 0.35s ease, -webkit-text-stroke-color 0.35s ease;
}

html.heading-hover-enabled h1.mask-text:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h2.mask-text:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h3.mask-text:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h4.mask-text:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h5.mask-text:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h6.mask-text:not(.heading-hover-exclude):hover,
html.heading-hover-enabled h1:not(.heading-hover-exclude):hover .mask-text,
html.heading-hover-enabled h2:not(.heading-hover-exclude):hover .mask-text,
html.heading-hover-enabled h3:not(.heading-hover-exclude):hover .mask-text,
html.heading-hover-enabled h4:not(.heading-hover-exclude):hover .mask-text,
html.heading-hover-enabled h5:not(.heading-hover-exclude):hover .mask-text,
html.heading-hover-enabled h6:not(.heading-hover-exclude):hover .mask-text,
html.heading-hover-enabled h1.mask-text:not(.heading-hover-exclude):active,
html.heading-hover-enabled h2.mask-text:not(.heading-hover-exclude):active,
html.heading-hover-enabled h3.mask-text:not(.heading-hover-exclude):active,
html.heading-hover-enabled h4.mask-text:not(.heading-hover-exclude):active,
html.heading-hover-enabled h5.mask-text:not(.heading-hover-exclude):active,
html.heading-hover-enabled h6.mask-text:not(.heading-hover-exclude):active,
html.heading-hover-enabled h1:not(.heading-hover-exclude):active .mask-text,
html.heading-hover-enabled h2:not(.heading-hover-exclude):active .mask-text,
html.heading-hover-enabled h3:not(.heading-hover-exclude):active .mask-text,
html.heading-hover-enabled h4:not(.heading-hover-exclude):active .mask-text,
html.heading-hover-enabled h5:not(.heading-hover-exclude):active .mask-text,
html.heading-hover-enabled h6:not(.heading-hover-exclude):active .mask-text {
  color: var(--heading-hover-color, #ffffff) !important;
  -webkit-text-stroke-color: var(--heading-hover-color, #ffffff);
}

.admin-page-text-row {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 4px;
}

.admin-page-text-row label {
  font-size: 0.65rem;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.35rem;
}

.admin-page-text-row input[type="text"],
.admin-page-text-row textarea {
  width: 100%;
  margin-bottom: 0.5rem;
}

.admin-page-text-color {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-page-text-color input[type="color"] {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  cursor: pointer;
}

.admin-page-text-color input[type="text"] {
  flex: 1;
  margin-bottom: 0;
  font-family: monospace;
  font-size: 0.75rem;
}

.collections-section {
  background: var(--theme-surface);
  color: var(--theme-heading);
  padding: 8rem 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--theme-heading) 6%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--theme-heading) 6%, transparent);
}

.collections-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.collections-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--theme-body-copy);
  margin-bottom: 1rem;
}

.collections-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}

.collections-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.collections-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.collections-grid.cols-3 {
  grid-template-columns: 1fr;
}

.collections-grid.cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .collections-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .collections-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collections-card {
  background: #050505;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.collections-card-name {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--theme-body-copy);
}

.collections-card-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 1rem;
  color: var(--theme-heading);
}

.collections-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.collections-card li {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--theme-body-copy);
}

.collections-footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--theme-body-copy);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.collections-hidden {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.hidden {
  display: none !important;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.lightbox img.is-loading {
  opacity: 0;
}

.lightbox-toolbar {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 1rem;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.lightbox-btn:hover {
  background: #fff;
  color: #000;
}

.lightbox-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.marquee-section { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; width: 100%; }
.marquee-section--display { padding: 5rem 0; border-top: none; }
.marquee-track { display: flex; flex-wrap: nowrap; width: max-content; will-change: transform; animation: marquee-scroll var(--marquee-duration, 55s) linear infinite; }
.marquee-chunk { display: inline-flex; align-items: center; gap: 2.5rem; white-space: nowrap; flex-shrink: 0; padding-right: 2.5rem; font-family: 'Big Shoulders Display', sans-serif; font-size: clamp(1.25rem, 2.5vw, 2.25rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; }
.marquee-display-chunk { display: inline-flex; align-items: center; gap: 5rem; white-space: nowrap; flex-shrink: 0; padding-right: 5rem; }
.marquee-display-text { font-family: 'Big Shoulders Display', sans-serif; font-size: clamp(3rem, 8vw, 10rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; }
.marquee-star { width: 3rem; height: 3rem; flex-shrink: 0; }
.marquee-dot { opacity: 0.35; }
@keyframes marquee-scroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.site-brand { display: flex !important; align-items: center; gap: calc(0.75rem * 1.12) !important; }
.inquire-hero { min-height: 32vh !important; padding-top: 5rem !important; }
.inquire-hero h1 { font-size: clamp(2rem, 8vw, 5.5rem) !important; }
.inquire-hero .hero-intro { margin-top: 1rem !important; }
.inquire-form-section { padding-top: 1.75rem !important; padding-bottom: 2rem !important; }
select, .input-group select { color: #fff !important; color-scheme: dark; }
select option { background-color: #0a0a0a !important; color: #fff !important; }
.input-group select:invalid { color: rgba(255,255,255,0.5) !important; }
.input-group select option:checked { background-color: #222 !important; }
.admin-panel select option { background-color: #0a0a0a !important; color: #fff !important; }
.collections-card-custom { text-align: center; align-items: center; }
.collections-card-custom ul { align-items: center; }
.collections-card-custom .collections-card-name, .collections-card-custom .collections-card-price { text-align: center; width: 100%; }
.collections-card.package-highlight {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 6px;
}
.site-logo { width: 2.5rem; height: 2.5rem; object-fit: contain; }

.site-footer-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-footer-bar-left {
  justify-self: start;
}

.site-footer-bar-center {
  justify-self: center;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-footer-bar-right {
  justify-self: stretch;
  min-width: 0;
  text-align: right;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .site-footer-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer-bar-left,
  .site-footer-bar-center,
  .site-footer-bar-right {
    justify-self: center;
  }
}

.site-footer-credit {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  cursor: default;
  padding: 0;
  white-space: nowrap;
}

.site-footer-bar-center a:hover {
  color: rgba(255, 255, 255, 0.55);
}

/* Wrapper must not participate in the form grid (Tailwind .contents is not bundled on inquire pages). */
#inquiry-form-fields {
  display: contents;
}

#inquiry-form .input-group {
  padding-top: 1.25rem;
}

.inquiry-form-heading {
  margin-bottom: 0.25rem;
  grid-column: 1 / -1;
}

.inquiry-form-heading h3 {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.inquiry-form-heading p {
  margin: 0.75rem 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
}

.hero-headline-group {
  display: inline-block;
  max-width: 100%;
  cursor: default;
  isolation: isolate;
}

/* Hero skeleton while first slide fully loads */
#hero-slideshow {
  background: #121212;
}

#hero-slideshow.is-loading-first .hero-slide {
  opacity: 0 !important;
}

#hero-slideshow.is-loading-first::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.12) 45%, rgba(255, 255, 255, 0.03) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  background-size: 220% 100%, 100% 100%;
  animation: hero-skeleton-shimmer 1.45s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes hero-skeleton-shimmer {
  0% { background-position: 140% 0, 0 0; }
  100% { background-position: -40% 0, 0 0; }
}

/* Site-wide: ghost until image fully loaded, then reveal */
.img-host-pending,
.image-reveal-container.img-host-pending,
.gallery-item.img-host-pending,
.home-case-media.img-host-pending {
  position: relative;
  background: #141414;
}

.img-ghost {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.03) 28%, rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0.03) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  background-size: 220% 100%, 100% 100%;
  animation: hero-skeleton-shimmer 1.45s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.img-host-ready > .img-ghost {
  opacity: 0;
  animation: none;
}

img.img-pending {
  opacity: 0 !important;
  filter: none !important;
}

img.img-ready {
  transition: opacity 0.45s ease;
}

#hero-slideshow .hero-slide.img-pending {
  opacity: 0 !important;
}

#hero-slideshow .hero-slide.img-ready.opacity-100 {
  opacity: 1;
}

#hero-slideshow .hero-slide.img-ready.opacity-0 {
  opacity: 0;
}

.hero-headline-group,
.hero-headline-group *,
.hero-headline-group *::before,
.hero-headline-group *::after {
  text-shadow: none !important;
  filter: none !important;
  -webkit-text-stroke: 0 transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.hero-headline-group:hover,
.hero-headline-group *:hover,
.hero-headline-group *:active,
.hero-headline-group *:focus {
  text-shadow: none !important;
  filter: none !important;
  outline: none !important;
  box-shadow: none !important;
}

main .hero-headline-group [data-editable],
main .hero-headline-group [data-editable]:hover,
main .hero-headline-group [data-editable]:focus {
  outline: none !important;
  box-shadow: none !important;
}

.hero-headline-stack {
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  line-height: 0.88 !important;
  row-gap: 0;
}

.hero-headline-stack > .overflow-hidden {
  padding-top: 0.05em;
  padding-bottom: 0;
}

.hero-headline-stack > .overflow-hidden.hero-headline-accent-row {
  margin-top: -0.14em;
  padding-top: 0;
  width: 100%;
}

.hero-headline-accent-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  width: 100%;
}

.hero-headline-primary {
  color: var(--theme-heading);
}

.hero-headline-subtitle {
  display: block;
  margin-top: 0.35rem;
  text-align: right;
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  letter-spacing: normal;
  text-transform: none;
  color: var(--theme-heading-serif, var(--theme-body-copy));
}

.hero-line-accent {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none !important;
  color: var(--theme-heading-serif, var(--theme-body-copy));
  font-size: 0.62em;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.about-intro-title {
  line-height: 0.78;
}

.about-intro-title .font-serif {
  display: inline-block;
  margin-top: -0.12em;
}

.theme-heading-text {
  color: var(--theme-heading) !important;
}

.theme-body-text {
  color: var(--theme-body-copy) !important;
}

.nav-plus-btn {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
}

.nav-newsletter-mobile {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  padding-bottom: 0.5rem;
}

.nav-newsletter-mobile:hover {
  color: #fff;
}

[data-nav-shop] {
  display: none !important;
}

[data-nav-shop].nav-shop-visible {
  display: inline-block !important;
}

.nav-shop-link.hidden {
  display: none !important;
}

#portfolio-category-filters,
.portfolio-category-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.portfolio-intro {
  --portfolio-gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: var(--portfolio-gap);
}

.portfolio-intro-copy {
  flex: 1;
  min-width: 0;
}

.portfolio-intro-title {
  margin: 0;
}

.portfolio-intro-subtitle,
.portfolio-intro-headline {
  line-height: 0.85;
}

.portfolio-intro-title .theme-heading-text {
  letter-spacing: 0.01em;
}

.portfolio-intro-headline .hero-line-accent {
  vertical-align: baseline;
  margin-left: 0.4rem;
}

.portfolio-category-filters {
  margin-top: var(--portfolio-gap);
  margin-bottom: 0;
}

.portfolio-intro-social {
  margin-top: 0.35rem;
}

.portfolio-grid-wrap {
  padding-top: 0;
}

@media (max-width: 767px) {
  body[data-page="portfolio"] #portfolio-grid {
    row-gap: 2.75rem;
    column-gap: 0;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item {
    width: 100%;
    max-width: none;
    margin-top: 0 !important;
    margin-inline: 0;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item .image-reveal-container {
    width: 100%;
    aspect-ratio: 4 / 5.5;
    max-height: none;
    margin-inline: 0;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item > div.absolute {
    padding: 1.5rem;
  }
}

@media (max-width: 1023px) {
  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item:nth-child(n) {
    margin-top: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item .image-reveal-container {
    aspect-ratio: 4 / 5;
    width: min(100%, clamp(33rem, 37vw, 39.6rem));
    height: auto;
    max-height: min(75vh, 39.6rem);
    margin-inline: auto;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .portfolio-couple-name {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
  }
}

@media (min-width: 1024px) {
  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item .image-reveal-container {
    aspect-ratio: 4 / 5;
  }
  body[data-page="portfolio"] .portfolio-grid-wrap {
    padding-inline: clamp(1.5rem, 3vw, 2.5rem);
  }

  body[data-page="portfolio"] #portfolio-grid {
    column-gap: 2.75rem;
    row-gap: 3.5rem;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item {
    width: 90%;
    max-width: 100%;
    margin-inline: auto;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item .image-reveal-container {
    width: 100%;
    max-height: none;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item:nth-child(3n + 1) {
    margin-top: 0;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item:nth-child(3n + 2) {
    margin-top: 7rem;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item:nth-child(3n + 3) {
    margin-top: 2rem;
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item > div.absolute {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }

  body[data-page="portfolio"] .portfolio-grid-wrap .portfolio-couple-name {
    font-size: clamp(1.35rem, 1.9vw, 2.35rem);
  }
}

body[data-page="portfolio"] .portfolio-card-caption {
  max-width: 100%;
}

body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item .image-reveal-container {
  overflow: hidden;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 2.8s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
}

body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item .image-reveal-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: filter 1.8s ease;
}

@media (hover: hover) and (pointer: fine) {
  body[data-page="portfolio"] .portfolio-grid-wrap .gallery-item:hover .image-reveal-container {
    transform: scale(1.035);
  }
}

body[data-page="portfolio"] .portfolio-card-rule {
  height: 1px;
  width: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.7s ease 0.1s;
}

body[data-page="portfolio"] .gallery-item:hover .portfolio-card-rule {
  width: min(72%, 28rem);
}

body[data-page="portfolio"] .portfolio-card-meta {
  color: rgba(255, 255, 255, 0.82) !important;
}

body[data-page="portfolio"] .gallery-item:hover .portfolio-card-meta {
  color: rgba(255, 255, 255, 0.98) !important;
}

main .story-cta-section .story-cta-inner {
  align-items: center;
}

main .story-cta-section [data-cta="button"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 2s cubic-bezier(0.25, 1, 0.35, 1), background-color 0.4s ease;
}

main .story-cta-section [data-cta="button"]:hover {
  background-color: #111 !important;
  color: #fff !important;
  transform: scale(1.04);
}

main .story-cta-section [data-cta="button"] [data-cta="buttonText"],
main .story-cta-section [data-cta="button"] svg {
  color: #fff !important;
}

.gallery-title-hero {
  transition: opacity 0.35s ease;
}

.gallery-title-hero.is-loading {
  min-height: clamp(4rem, 12vw, 12rem);
  opacity: 0;
}

.newsletter-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-modal {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  max-width: 32rem;
  width: 100%;
  position: relative;
}

.newsletter-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.newsletter-modal-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
}

.newsletter-modal-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1;
}

.newsletter-modal-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.newsletter-modal-form label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.newsletter-modal-form input {
  width: 100%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}

.newsletter-modal-submit {
  width: 100%;
  background: var(--theme-button-bg);
  color: var(--theme-button-text);
  border: none;
  padding: 1rem;
  font-size: 9px;
  letter-spacing: 0.5em;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
}

.newsletter-modal-submit:hover {
  background: var(--theme-button-hover-bg, color-mix(in srgb, var(--theme-button-bg) 85%, var(--theme-button-text)));
}

.newsletter-modal-status {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-height: 1rem;
}

.newsletter-modal-status[data-type="error"] {
  color: #f7cece;
}

.newsletter-modal-status[data-type="success"] {
  color: #c5f1d8;
}

@media (max-width: 767px) {
  .nav-plus-btn,
  #admin-toggle-btn {
    display: none !important;
  }

  .nav-newsletter-mobile {
    display: block;
  }

  nav .site-brand {
    transform: translateX(-12px);
    font-size: calc(2.25rem * 0.9) !important;
  }

  nav .site-logo {
    width: calc(2.5rem * 0.9);
    height: calc(2.5rem * 0.9);
  }

  .portfolio-couple-name {
    font-size: clamp(1.75rem, 8vw, 3rem) !important;
    line-height: 1.05 !important;
  }
}

@media (min-width: 768px) {
  .nav-newsletter-mobile {
    display: none !important;
  }
}

.lightbox-status {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 1rem 1.35rem 1.1rem;
  min-width: min(88vw, 18rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 3;
  text-align: center;
}

.lightbox-status-text {
  display: block;
  line-height: 1.4;
}

.lightbox-progress {
  display: block;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.lightbox-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  transition: width 0.12s ease;
}

.lightbox-progress.is-indeterminate .lightbox-progress-fill {
  width: 38%;
  animation: lightbox-progress-indeterminate 1.15s ease-in-out infinite;
}

@keyframes lightbox-progress-indeterminate {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.lightbox-status.hidden {
  display: none !important;
}

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 3rem; height: 3rem; cursor: pointer; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease; }
.lightbox-nav:hover { background: #fff; color: #000; }
.lightbox-nav.is-waiting {
  opacity: 0.45;
  cursor: wait;
}
.lightbox-nav.is-waiting:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }
body.admin-edit-mode [data-editable], body.admin-edit-mode [data-editable-img] { outline: 1px dashed rgba(255,255,255,0.35); outline-offset: 3px; cursor: pointer; }
body.admin-edit-mode [data-editable]:hover, body.admin-edit-mode [data-editable-img]:hover { outline-color: #fff; }
body.admin-edit-mode main p:hover, body.admin-edit-mode main h1:hover, body.admin-edit-mode main h2:hover,
body.admin-edit-mode main h3:hover, body.admin-edit-mode main span:hover, body.admin-edit-mode main a:hover,
body.admin-edit-mode main label:hover, body.admin-edit-mode main li:hover, body.admin-edit-mode main img:hover:not([data-site-logo]) {
  outline: 1px dashed rgba(255,255,255,0.2); outline-offset: 2px; cursor: pointer;
}
.admin-fab.open { background: #333; color: #fff; }
