:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --panel-soft: #fbfbfd;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(17, 17, 17, 0.08);
  --accent: #0a84ff;
  --accent-soft: #e8f2ff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --hero-progress: 0;
  --title-reveal: 0;
  --content-reveal: 0;
  --title-lift: 0px;
  --footer-lift: 0px;
  --media-scale: 1;
  --media-dim: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    sans-serif;
}

body.has-modal {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, #0a84ff, #7bc2ff);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(245, 245, 247, 0.42);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.035);
  opacity: var(--content-reveal);
  transform: translateY(calc(-22px + var(--content-reveal) * 22px));
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 520ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.topbar.is-visible {
  pointer-events: auto;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a,
.eyebrow,
.search-box span,
.section-aside span,
.card-meta,
.modal-kicker {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.text-button:hover,
.card-link:hover {
  color: var(--accent);
}

main {
  padding-bottom: 0;
}

.landing-shell {
  position: relative;
}

.hero-stage {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 240vh;
}

.hero-stage-media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-stage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--media-dim));
  pointer-events: none;
}

.hero-stage-media img,
.hero-stage-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--media-scale));
  transform-origin: center center;
}

.hero-stage-media video {
  display: none;
}

.hero-title-layer {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100vh;
  margin-top: -100vh;
  display: grid;
  align-items: center;
  opacity: var(--title-reveal);
  transform: translateY(var(--title-lift));
  pointer-events: none;
}

.hero-title-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 82px;
}

.hero-stage-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title-inner h1 {
  max-width: 10ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.hero-stage-text {
  max-width: 52ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  pointer-events: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
}

.button.primary {
  background: #ffffff;
  color: #111111;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-scroll-cue {
  position: sticky;
  top: calc(100vh - 64px);
  z-index: 3;
  display: grid;
  justify-content: center;
  margin-top: -72px;
  opacity: calc(1 - min(var(--title-reveal) * 1.4, 1));
}

.hero-scroll-cue span {
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
}

.hero-scroll-cue span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
}

.content-shell {
  position: relative;
  z-index: 4;
  margin-top: -100vh;
  padding-top: 118vh;
  opacity: var(--content-reveal);
  transform: translateY(calc(56px - var(--content-reveal) * 56px - var(--footer-lift)));
}

.summary-strip,
.spotlight,
.journal-section,
.frames-section,
.library-section,
.about-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 28px;
}

.about-section {
  margin-bottom: 0;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: rgba(245, 245, 247, 0.98);
  border-radius: 36px;
  padding: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.04),
    0 22px 60px rgba(15, 23, 42, 0.1);
}

.spotlight,
.journal-section,
.frames-section,
.library-section,
.about-section {
  background: rgba(245, 245, 247, 0.985);
  border-radius: 36px;
  padding: 28px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.04),
    0 22px 60px rgba(15, 23, 42, 0.08);
}

.summary-card,
.spotlight-panel,
.spotlight-card,
.journal-card,
.frame-card,
.reading-item,
.about-panel,
.modal-panel,
.gallery-panel {
  background: var(--panel);
  box-shadow:
    inset 0 0 0 1px var(--line),
    var(--shadow);
  backdrop-filter: blur(24px);
}

.summary-card {
  padding: 24px;
  border-radius: 28px;
}

.summary-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 2rem;
  line-height: 1;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 24px;
  padding: 28px;
}

.spotlight-copy {
  padding: 20px 0;
}

.spotlight-copy h2,
.section-head h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.spotlight-copy p,
.journal-card p,
.frame-card span,
.reading-item p,
.about-copy p,
.gallery-copy p,
.modal-summary,
.modal-body {
  color: var(--muted);
  line-height: 1.78;
}

.spotlight-panel {
  min-height: 280px;
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(10, 132, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.spotlight-card {
  min-height: 160px;
  padding: 20px;
  border-radius: 24px;
}

.spotlight-card strong {
  font-size: 2rem;
}

.text-button,
.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.journal-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.journal-filter-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
}

.journal-filter-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(520px, 100%);
  min-height: 64px;
  padding: 12px 18px;
  border-radius: 22px;
  background: var(--panel-strong);
  box-shadow: inset 0 0 0 1px var(--line);
  backdrop-filter: blur(24px);
}

.search-box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.search-box input::placeholder {
  color: rgba(17, 17, 17, 0.4);
}

.segment-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}

.segment {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  padding: 4px 2px 8px;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.segment-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  cursor: pointer;
  backdrop-filter: blur(20px);
  white-space: nowrap;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.segment-button.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.segment-button.is-muted {
  opacity: 0.52;
  transform: scale(0.94);
}

.segment-button.is-near {
  opacity: 0.82;
  transform: scale(0.98);
}

.filter-control {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.06),
    0 18px 36px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.filter-control:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.08),
    0 22px 40px rgba(15, 23, 42, 0.16);
}

.filter-control:disabled {
  opacity: 0.36;
  cursor: default;
}

.journal-filter-carousel.is-static .filter-control {
  display: none;
}

.journal-filter-carousel.is-static {
  grid-template-columns: 1fr;
}

.journal-filter-carousel.is-static .segment-viewport {
  overflow: visible;
  mask-image: none;
}

.journal-filter-carousel.is-static .segment {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  transform: none !important;
}

.journal-filter-carousel.is-expanded {
  grid-template-columns: 1fr;
}

.journal-filter-carousel.is-expanded .filter-control {
  display: none;
}

.journal-filter-carousel.is-expanded .segment-viewport {
  overflow: visible;
  mask-image: none;
}

.journal-filter-carousel.is-expanded .segment {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  transform: none !important;
}

.journal-carousel {
  position: relative;
  padding: 8px 56px;
  border-radius: 34px;
  overflow: hidden;
}

.journal-viewport {
  overflow: hidden;
  mask-image: none;
  border-radius: 30px;
}

.journal-grid,
.frames-grid,
.reading-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  transition: transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 4px 2px 12px;
}

.journal-card,
.frame-card,
.reading-item {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px;
  border-radius: 28px;
  min-width: 0;
  transform: scale(0.992);
  opacity: 1;
  transition:
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 680ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 22px 44px rgba(15, 23, 42, 0.1);
}

.journal-card h3,
.frame-card strong,
.reading-item h3,
.modal-panel h3,
.gallery-panel h3 {
  margin: 0;
  line-height: 1.28;
}

.journal-card.is-near,
.frame-card.is-near,
.reading-item.is-near {
  transform: scale(1);
}

.journal-card.is-current,
.frame-card.is-current,
.reading-item.is-current {
  transform: scale(1.014);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 30px 56px rgba(15, 23, 42, 0.16);
}

.journal-card .card-meta {
  margin: 0 0 14px;
}

.journal-card .card-title,
.reading-item h3 {
  min-height: 3.2em;
}

.journal-card .card-excerpt {
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-height: 1.82;
  margin-bottom: auto;
}

.reading-item p {
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  line-height: 1.82;
  margin-bottom: auto;
}

.journal-control,
.frames-control,
.library-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.06),
    0 18px 36px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.journal-control:hover:not(:disabled),
.frames-control:hover:not(:disabled),
.library-control:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.08),
    0 22px 40px rgba(15, 23, 42, 0.16);
}

.journal-control.prev {
  left: 0;
}

.journal-control.next {
  right: 0;
}

.journal-carousel.is-static .journal-control,
.journal-carousel.is-static + .journal-dots {
  display: none;
}

.journal-control:disabled,
.frames-control:disabled,
.library-control:disabled {
  opacity: 0.36;
  cursor: default;
}

.journal-dots,
.frames-dots,
.library-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.journal-dot,
.frames-dot,
.library-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
  transition:
    width 280ms ease,
    background-color 280ms ease,
    transform 280ms ease;
}

.journal-dot.active,
.frames-dot.active,
.library-dot.active {
  width: 22px;
  background: var(--accent);
}

.frames-carousel {
  position: relative;
  padding: 8px 56px;
  border-radius: 34px;
  overflow: hidden;
}

.library-carousel {
  position: relative;
  padding: 8px 56px;
  border-radius: 34px;
  overflow: hidden;
}

.frames-viewport {
  overflow: hidden;
  border-radius: 30px;
}

.library-viewport {
  overflow: hidden;
  border-radius: 30px;
}

.reading-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  transition: transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 4px 2px 12px;
}

.frame-card {
  overflow: hidden;
  cursor: pointer;
}

.frame-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.frame-card figcaption {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  gap: 8px;
  min-height: 104px;
  padding: 18px 18px 20px;
}

.frame-card span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.frames-control.prev {
  left: 0;
}

.frames-control.next {
  right: 0;
}

.reading-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.library-control.prev {
  left: 0;
}

.library-control.next {
  right: 0;
}

.library-carousel.is-static .library-control,
.library-carousel.is-static + .library-dots {
  display: none;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  gap: 20px;
  padding-bottom: 24px;
}

.about-section.is-compact {
  grid-template-columns: minmax(0, 1fr);
}

.about-copy p {
  max-width: 60ch;
  margin-top: 18px;
}

.about-image-wrap {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.05),
    0 24px 44px rgba(15, 23, 42, 0.08);
}

.about-image-wrap img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-section.is-compact .about-panel {
  display: none;
}

.about-practice-card,
.about-empty {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.05),
    0 18px 40px rgba(15, 23, 42, 0.08);
}

.about-practice-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-practice-copy {
  padding: 18px;
}

.about-practice-copy strong {
  display: block;
  margin-bottom: 8px;
}

.about-practice-copy p,
.about-empty {
  color: var(--muted);
  line-height: 1.72;
}

.about-empty {
  padding: 24px;
}

.empty-state {
  margin-top: 16px;
  color: var(--muted);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 247, 0.74);
  backdrop-filter: blur(14px);
}

.modal-panel,
.gallery-panel {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 30px;
  border-radius: 32px;
}

.gallery-panel {
  width: min(1020px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.gallery-panel img {
  height: 100%;
  max-height: 72vh;
  object-fit: cover;
  border-radius: 24px;
  background: var(--panel-soft);
}

.gallery-copy {
  align-self: end;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-summary {
  margin: 16px 0 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none;
}

@media (max-width: 1120px) {
  .spotlight,
  .about-section,
  .gallery-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .summary-strip,
  .spotlight,
  .journal-section,
  .frames-section,
  .library-section,
  .about-section,
  .hero-title-inner {
    width: min(100% - 24px, 1240px);
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    height: 220vh;
  }

  .hero-title-inner {
    padding-top: 116px;
  }

  .hero-title-inner h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .summary-strip {
    grid-template-columns: 1fr;
  }

  .journal-carousel {
    padding: 0 0 48px;
  }

  .journal-viewport {
    mask-image: none;
  }

  .segment-viewport {
    mask-image: none;
  }

  .frames-carousel {
    padding: 0 0 48px;
  }

  .library-carousel {
    padding: 0 0 48px;
  }

  .frames-grid {
    grid-auto-columns: 82%;
  }

  .reading-grid {
    grid-auto-columns: 82%;
  }

  .frames-control {
    display: none;
  }

  .library-control {
    display: none;
  }

  .search-box {
    min-width: 100%;
  }

  .journal-tools {
    grid-template-columns: 1fr;
  }

  .journal-filter-carousel {
    grid-template-columns: 1fr;
  }

  .journal-grid {
    grid-auto-columns: 82%;
  }

  .journal-control {
    display: none;
  }

  .filter-control {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-shell {
    margin-top: -100vh;
    padding-top: 112vh;
  }

  .modal-shell {
    padding: 14px;
  }

  .modal-panel,
  .gallery-panel {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-title-layer,
  .content-shell {
    opacity: 1;
    transform: none;
  }

  .hero-stage-media img,
  .hero-stage-media video {
    transform: none;
  }

  .topbar {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
