:root {
  --bg: #fff8f4;
  --bg-deep: #f2ddd5;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.8);
  --text: #2d171b;
  --muted: #725458;
  --rose: #d3668d;
  --rose-deep: #b84571;
  --mocha: #5a302e;
  --champagne: #efcf9b;
  --shadow: 0 24px 80px rgba(112, 51, 62, 0.16);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 195, 214, 0.85), transparent 20%),
    radial-gradient(circle at 92% 14%, rgba(255, 231, 190, 0.75), transparent 18%),
    radial-gradient(circle at 48% 92%, rgba(255, 215, 228, 0.45), transparent 24%),
    linear-gradient(180deg, #fff9f6 0%, #f9ece6 52%, #f7f1ed 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button[hidden] {
  display: none !important;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 calc(3rem + env(safe-area-inset-bottom, 0px));
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.6;
  pointer-events: none;
}

.ambient-one {
  top: 8rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(232, 166, 187, 0.55);
}

.ambient-two {
  top: 40rem;
  left: -7rem;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 219, 160, 0.65);
}

.ambient-three {
  bottom: 14rem;
  right: 5%;
  width: 16rem;
  height: 16rem;
  background: rgba(216, 102, 141, 0.22);
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(112, 51, 62, 0.1);
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6d6dc, #e9b8c5 55%, #d76b90);
  color: #fff7f8;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(184, 69, 113, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(184, 69, 113, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose-deep);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: #fff;
  box-shadow: 0 18px 36px rgba(184, 69, 113, 0.25);
}

.button-secondary {
  border: 1px solid rgba(184, 69, 113, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

main {
  display: grid;
  gap: 2rem;
}

.hero,
.spotlight,
.editorial,
.gallery,
.collabs,
.site-footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding: 2rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--rose-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  max-width: 10ch;
}

.hero h1 span {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-text {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats article,
.spotlight-panel,
.collab-card,
.collection-card,
.results-pill {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  min-height: 42rem;
}

.stage-main {
  position: absolute;
  inset: 0 5rem 4rem 0;
  padding: 1rem;
  border-radius: 2.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 36px 100px rgba(112, 51, 62, 0.18);
}

.stage-main img,
.editorial-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 1.8rem;
  object-fit: cover;
}

.stage-caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(37, 23, 27, 0.46);
  color: #fff6f6;
  backdrop-filter: blur(16px);
}

.stage-caption span,
.stage-card span,
.mini-label,
.collection-card__meta,
.filter-label,
.gallery-card__badge {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.stage-caption strong {
  font-size: 1rem;
  font-weight: 600;
}

.stage-card {
  position: absolute;
  display: grid;
  gap: 0.85rem;
  width: 14.5rem;
  padding: 0.95rem;
  border-radius: 1.6rem;
  background: rgba(255, 250, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stage-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.1rem;
}

.stage-card p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.stage-card-top {
  top: 1rem;
  right: 0;
}

.stage-card-bottom {
  right: 1.5rem;
  bottom: 0;
}

.ticker {
  overflow: hidden;
  padding: 0.7rem 0;
  border-block: 1px solid rgba(84, 37, 46, 0.08);
}

.ticker-track {
  display: flex;
  gap: 2.25rem;
  min-width: max-content;
  animation: ticker-scroll 26s linear infinite;
  color: var(--mocha);
  font-weight: 700;
}

.ticker-track span {
  position: relative;
}

.ticker-track span::before {
  content: "*";
  display: inline-block;
  margin-right: 2.25rem;
  color: var(--rose);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  max-width: 12ch;
  text-wrap: balance;
}

.spotlight,
.editorial,
.gallery,
.collabs,
.site-footer {
  padding: 2rem 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.spotlight-panel {
  min-height: 100%;
}

.spotlight-panel-quote {
  display: flex;
  align-items: end;
  min-height: 18rem;
  background:
    linear-gradient(160deg, rgba(255, 232, 238, 0.92), rgba(255, 255, 255, 0.55)),
    radial-gradient(circle at top right, rgba(239, 207, 155, 0.4), transparent 30%);
}

.spotlight-panel-quote p {
  margin: 0;
  max-width: 24rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.spotlight-panel h3,
.collab-card h3,
.editorial-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

.spotlight-panel p,
.collab-card p,
.editorial-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mood-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0.2rem 0 0;
  list-style: none;
}

.mood-list li {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.editorial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.editorial-copy,
.editorial-frame {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2rem;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.slide-count {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.slide-tags {
  margin-top: 1rem;
}

.slide-tags span {
  display: inline-flex;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(216, 102, 141, 0.12);
  color: var(--rose-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.slide-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.slide-dot {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(184, 69, 113, 0.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.slide-dot.is-active {
  background: var(--rose-deep);
  box-shadow: 0 0 0 6px rgba(184, 69, 113, 0.12);
  transform: scale(1.05);
}

.editorial-frame {
  position: relative;
}

.editorial-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 1.45rem;
}

.editorial-image-wrap img {
  transition:
    transform 320ms ease,
    opacity 220ms ease;
}

.editorial-image-wrap.is-switching img {
  transform: scale(1.03);
  opacity: 0.88;
}

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-group {
  display: grid;
  gap: 0.7rem;
}

.filter-label {
  color: var(--muted);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-chip {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(184, 69, 113, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 36px rgba(184, 69, 113, 0.2);
}

.results-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  color: var(--muted);
  font-weight: 700;
}

.collection-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15rem, 19rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin-bottom: 1.25rem;
  scroll-snap-type: x proximity;
}

.collection-card {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  scroll-snap-align: start;
}

.collection-card:hover {
  transform: translateY(-2px);
}

.collection-card.is-active {
  border-color: rgba(184, 69, 113, 0.28);
  background: linear-gradient(160deg, rgba(255, 235, 241, 0.9), rgba(255, 255, 255, 0.64));
}

.collection-card img {
  width: 4.6rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
}

.collection-card__thumb {
  display: grid;
  place-items: center;
  width: 4.6rem;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(239, 207, 155, 0.52), rgba(216, 102, 141, 0.18));
  color: var(--rose-deep);
}

.collection-card__copy {
  display: grid;
  gap: 0.2rem;
}

.collection-card__meta {
  color: var(--rose-deep);
}

.collection-card__copy strong {
  font-size: 1.05rem;
}

.collection-card__copy span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.gallery-grid-dynamic {
  columns: 4 15rem;
  column-gap: 1rem;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 1.7rem;
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(32, 15, 20, 0.62) 100%);
}

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

.gallery-card__badge,
.gallery-card__title {
  position: absolute;
  z-index: 1;
  color: #fff7f8;
}

.gallery-card__badge {
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 23, 27, 0.42);
  backdrop-filter: blur(12px);
}

.gallery-card__title {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.2rem;
  text-align: left;
  font-weight: 700;
}

.gallery-card__title small {
  color: rgba(255, 247, 248, 0.84);
  font-size: 0.84rem;
  font-weight: 600;
}

.gallery-empty {
  padding: 2rem;
  border: 1px dashed rgba(184, 69, 113, 0.24);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  text-align: center;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.collab-card {
  min-height: 15rem;
}

.collab-card-cta {
  background:
    linear-gradient(180deg, rgba(90, 48, 46, 0.98), rgba(184, 69, 113, 0.95));
  color: #fff7f7;
}

.collab-card-cta p,
.collab-card-cta .mini-label {
  color: rgba(255, 247, 247, 0.82);
}

.collab-card-cta a {
  display: inline-flex;
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: var(--muted);
}

.lightbox {
  width: min(100% - 2rem, 72rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  padding: 1rem;
  background: rgba(27, 15, 20, 0.88);
  color: #fff8f9;
}

.lightbox::backdrop {
  background: rgba(16, 7, 11, 0.72);
  backdrop-filter: blur(12px);
}

.lightbox-close-wrap {
  display: flex;
  justify-content: flex-end;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close {
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.lightbox-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.lightbox-nav {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.lightbox-figure {
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 76vh;
  border-radius: 1.3rem;
  object-fit: contain;
}

.lightbox-caption {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.8rem;
}

.lightbox-caption strong {
  font-size: 1.1rem;
}

.lightbox-caption span {
  color: rgba(255, 248, 249, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero,
  .editorial-shell,
  .spotlight-grid,
  .collab-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    align-items: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 36rem;
  }

  .stage-main {
    inset: 0 4rem 3rem 0;
  }

  .gallery-grid-dynamic {
    columns: 3 14rem;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
    padding-top: 0.8rem;
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    border-radius: 1.4rem;
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding-top: 0.25rem;
  }

  .site-header.is-open .header-panel {
    display: flex;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(184, 69, 113, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
  }

  .header-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .site-footer h2 {
    max-width: none;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .stage-main {
    inset: 0 0 6rem;
  }

  .stage-card {
    width: 11.5rem;
    padding: 0.75rem;
  }

  .stage-card-top {
    top: auto;
    right: 0;
    bottom: 1rem;
  }

  .stage-card-bottom {
    left: 0;
    right: auto;
    bottom: -1rem;
  }

  .gallery-toolbar {
    align-items: start;
  }

  .results-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .collection-rail {
    grid-auto-columns: minmax(14rem, 16rem);
  }

  .gallery-grid-dynamic {
    columns: 2 12rem;
  }

  .lightbox-shell {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lightbox-nav {
    width: 100%;
  }

  .lightbox {
    width: min(100% - 1rem, 72rem);
    padding: 0.85rem;
    border-radius: 1.4rem;
  }

  .lightbox-figure img {
    max-height: 62dvh;
  }
}

@media (max-width: 540px) {
  html {
    scroll-padding-top: 5rem;
  }

  .page-shell {
    width: min(calc(100% - 0.8rem), var(--max-width));
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small,
  .site-nav {
    font-size: 0.84rem;
  }

  .hero-stage {
    display: grid;
    gap: 0.85rem;
    min-height: auto;
  }

  .stage-main,
  .stage-card,
  .stage-card-top,
  .stage-card-bottom {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .stage-main {
    padding: 0.7rem;
    border-radius: 1.8rem;
  }

  .stage-main img {
    aspect-ratio: 4 / 5;
  }

  .stage-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem 0.95rem;
  }

  .stage-caption strong {
    font-size: 0.92rem;
  }

  .stage-card {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 1.2rem;
  }

  .stage-card img {
    aspect-ratio: 1 / 1;
    border-radius: 0.9rem;
  }

  .stage-card p {
    font-size: 0.86rem;
  }

  .spotlight-panel-quote p {
    font-size: 1.7rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .filter-chip {
    white-space: nowrap;
  }

  .collection-rail {
    grid-auto-columns: minmax(13rem, 14.5rem);
  }

  .collection-card {
    grid-template-columns: 4rem minmax(0, 1fr);
    padding: 0.9rem;
  }

  .collection-card img,
  .collection-card__thumb {
    width: 4rem;
  }

  .gallery-grid-dynamic {
    columns: 1;
  }

  .gallery-card__badge {
    top: 0.8rem;
    left: 0.8rem;
  }

  .gallery-card__title {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .lightbox-caption strong {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .site-header {
    top: 0.5rem;
  }

  .brand-mark {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.15rem;
  }

  .hero {
    gap: 1.4rem;
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-text,
  .spotlight-panel p,
  .collab-card p,
  .editorial-copy p {
    font-size: 0.96rem;
  }

  .section-heading h2,
  .site-footer h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .editorial-copy,
  .editorial-frame,
  .spotlight-panel,
  .collab-card,
  .results-pill {
    padding: 1rem;
  }

  .lightbox {
    width: calc(100% - 0.5rem);
    padding: 0.7rem;
  }
}
