:root {
  --bg: #050505;
  --text: #f1f1eb;
  --muted: #9a9a8f;
  --dim: #5f5f58;
  --acid: #b5e300;
  --acid-dark: #7d9e00;
  --line: rgba(241, 241, 235, 0.18);
  --line-soft: rgba(241, 241, 235, 0.08);
  --shadow: rgba(0, 0, 0, 0.65);
  --rb-bg-1: url("assets/backgrounds/tile-01.webp");
  --rb-bg-2: url("assets/backgrounds/tile-02.webp");
  --rb-bg-3: url("assets/backgrounds/tile-03.webp");
  --rb-bg-4: url("assets/backgrounds/tile-04.webp");
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  background: #050505;
  color: var(--text);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.88)),
    var(--rb-bg-1),
    var(--rb-bg-2),
    var(--rb-bg-3),
    var(--rb-bg-4),
    radial-gradient(circle at 18% 12%, rgba(181, 227, 0, 0.08), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.035), transparent 22%),
    linear-gradient(180deg, #050505 0%, #090909 52%, #030303 100%);
  background-repeat:
    no-repeat,
    repeat,
    repeat,
    repeat,
    repeat,
    no-repeat,
    no-repeat,
    no-repeat;
  background-size:
    auto,
    560px 560px,
    840px 840px,
    1180px 1180px,
    1560px 1560px,
    auto,
    auto,
    auto;
  background-position:
    center,
    -80px -40px,
    18% 12%,
    72% 28%,
    50% 80%,
    center,
    center,
    center;
  background-blend-mode:
    normal,
    screen,
    overlay,
    soft-light,
    multiply,
    normal,
    normal,
    normal;
  transform: translateZ(0);
  will-change: transform;
}

#app,
.presentation-floating-button {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}

input,
textarea,
[contenteditable="true"],
.selectable {
  -webkit-user-select: text;
  user-select: text;
}

a {
  color: inherit;
}

#app {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 28px;
}

/* Typography */

h1,
.panel h2,
.data-card h2,
.empty-state h2,
.contact-card h2 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.9), 0 0 1px rgba(255, 255, 255, 0.35);
}

h1 {
  max-width: 620px;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
}

h1::after {
  content: "";
  display: block;
  width: min(62%, 320px);
  height: 1px;
  margin: 24px 0 0;
  background: var(--line);
}

.eyebrow,
.panel-label,
.card-meta,
.data-toolbar p,
.top-nav a,
.main-nav a,
.card-link,
.card-link-inline,
.card-links a,
.contact-links a,
.transmission-strip {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow,
.panel-label,
.card-meta {
  color: var(--acid);
}

.tagline {
  max-width: 520px;
  margin: 24px 0 0;
  color: #d2d2c8;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.015em;
}

/* Header */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0 8px;
  border-bottom: 1px solid var(--line);
  min-height: unset;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: unset;
  height: auto;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(180px, 12vw, 260px);
  height: auto;
  max-height: none;
  object-fit: contain;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

.brand-text-visible {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  display: inline-block;
  font-weight: 800;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--acid);
}

/* Home */

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding: 42px 0 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 7%;
  width: 42%;
  height: 86%;
  border-left: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding-left: 28px;
}

#startTransmission,
button {
  appearance: none;
  border: 0;
  margin-top: 34px;
  padding: 17px 28px;
  background: var(--acid);
  color: #050505;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 8px 8px 0 rgba(181, 227, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.6) inset;
  transition: 160ms ease;
}

#startTransmission:hover,
button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(181, 227, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.7) inset;
}

.hero-right {
  position: relative;
  min-height: 560px;
  z-index: 1;
}

.hero-right::before,
.hero-right::after {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid rgba(241, 241, 235, 0.32);
  box-shadow: 0 22px 50px var(--shadow), 0 0 0 7px rgba(233, 229, 216, 0.035);
  filter: saturate(0.75) contrast(1.15);
}

.hero-right::before {
  width: 54%;
  height: 62%;
  left: 5%;
  top: 6%;
  transform: rotate(-1.5deg);
  background:
    linear-gradient(180deg, rgba(28, 45, 44, 0.9), rgba(3, 3, 3, 0.9)),
    radial-gradient(circle at 40% 30%, rgba(181, 227, 0, 0.18), transparent 28%);
}

.hero-right::after {
  width: 48%;
  height: 40%;
  right: 4%;
  top: 13%;
  transform: rotate(2deg);
  background:
    linear-gradient(180deg, rgba(66, 50, 37, 0.85), rgba(7, 7, 7, 0.95)),
    radial-gradient(circle at 70% 40%, rgba(181, 227, 0, 0.16), transparent 24%);
}

.panel {
  position: absolute;
  left: 12%;
  bottom: 8%;
  z-index: 4;
  width: 74%;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.78));
  box-shadow: 0 26px 56px var(--shadow);
}

.panel::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -12px;
  width: 96px;
  height: 22px;
  background: rgba(181, 227, 0, 0.8);
  transform: rotate(-2deg);
}

.panel h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.4vw, 54px);
}

#latestArtist {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.main-nav a {
  position: relative;
  padding: 22px 18px;
  border-right: 1px solid var(--line-soft);
  color: var(--text);
  text-decoration: none;
  transition: 180ms ease;
}

.main-nav a:first-child {
  border-left: 1px solid var(--line-soft);
}

.main-nav a::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  margin-bottom: 10px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: 180ms ease;
}

.main-nav a:hover {
  background: var(--acid);
  color: #050505;
}

.main-nav a:hover::before {
  background: #050505;
  transform: scaleX(1);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.section-card {
  min-height: 280px;
  padding: 28px;
  position: relative;
  border-right: 1px solid var(--line-soft);
}

.section-card:first-child {
  border-left: 1px solid var(--line-soft);
}

.section-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
  text-transform: uppercase;
}

.section-card p,
.data-card p,
.empty-state p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: var(--acid);
  text-decoration: none;
}

.transmission-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--acid-dark);
  color: var(--acid);
  background: rgba(181, 227, 0, 0.035);
}

/* Pages */

.page-hero {
  padding: 42px 0 38px;
  border-bottom: 1px solid var(--line);
}

.data-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.data-toolbar p {
  margin: 0;
  color: var(--muted);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-btn {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--acid);
  color: #050505;
}

/* Cards */

.artists-grid,
.projects-grid,
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-left: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.data-card {
  min-height: 540px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 227, 0, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005));
  overflow: hidden;
}

.records-grid .data-card {
  min-height: 0;
  border: 1px solid var(--line-soft);
}

.artist-image,
.release-cover,
.project-image,
.store-image {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(181, 227, 0, 0.10), transparent),
    #111;
}

.artist-image,
.project-image,
.store-image {
  height: 310px;
}

.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #050505;
}

.release-cover .image-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.release-cover .image-link:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: -2px;
}

.artist-image img,
.release-cover img,
.project-image img,
.store-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.08) contrast(1.08) saturate(0.9);
  transition: 260ms ease;
}

.data-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.1) saturate(1);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(181, 227, 0, 0.12), transparent 40%),
    #101407;
  color: var(--acid);
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: 72px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.release-cover .image-placeholder {
  padding: 22px;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.card-body {
  padding: 32px;
}

.release-card .card-body {
  padding: 20px;
}

.data-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.1vw, 50px);
}

.release-card h2 {
  font-size: clamp(20px, 1.65vw, 32px);
  line-height: 1.08;
  margin-bottom: 10px;
}

.release-artist {
  margin: 0 0 16px;
  font-size: 12px;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.card-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.release-card .card-links {
  margin-top: 18px;
}

.card-links a,
.contact-links a,
.card-link-inline {
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid var(--acid-dark);
}

.card-links a:hover,
.contact-links a:hover,
.card-link-inline:hover {
  color: var(--text);
  border-color: var(--text);
}

.release-card .card-links a {
  font-size: 10px;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  font-size: 12px;
}

.release-card .meta-list {
  margin-top: 16px;
  font-size: 10px;
}

.meta-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.release-card .meta-list div {
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding-top: 8px;
}

.meta-list dt {
  color: var(--dim);
  text-transform: uppercase;
}

.meta-list dd {
  margin: 0;
  color: var(--text);
}

/* Tracklist */

.tracklist-panel {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.tracklist-label {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.track-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
}

.track-list li:first-child {
  border-top: 0;
}

.track-list li.is-focus .track-no,
.track-list li.is-focus strong {
  color: var(--acid);
}

.track-no {
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
}

.track-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.track-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.track-title-row strong {
  min-width: 0;
}

.track-main strong {
  color: var(--text);
  font-size: 11px;
  line-height: 1.3;
}

.track-main em,
.track-duration {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
}

.track-duration {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: right;
}

/* Contact / About */

.empty-state,
.contact-card {
  margin-top: 28px;
  padding: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(181, 227, 0, 0.05), transparent 30%),
    rgba(255, 255, 255, 0.025);
}

.empty-state h2,
.contact-card h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5.8vw, 80px);
}

.contact-card p {
  max-width: 760px;
}

.is-hidden {
  display: none !important;
}

/* Preserve data capitalization from Google Sheets. */
.data-title,
.artist-name,
.release-title,
.work-title,
.recording-title,
.track-title,
.project-title,
.store-title,
.release-artist,
#latestRelease,
#latestArtist {
  text-transform: none !important;
}

/* Responsive */

@media (max-width: 1280px) {
  .records-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {

  .artists-grid,
  .projects-grid,
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  #app {
    padding: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    gap: 30px;
    padding-top: 32px;
  }

  .hero-left {
    padding-left: 0;
  }

  .hero-right {
    min-height: 440px;
  }

  .panel {
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .main-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .records-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 0 28px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: min(220px, 58vw);
    height: auto;
    max-height: none;
  }

  .top-nav {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .top-nav a {
    font-size: 12px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .data-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-group {
    justify-content: flex-start;
    width: 100%;
  }

  .artists-grid,
  .projects-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .records-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .release-card.data-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    align-items: stretch;
  }

  .release-card .card-body {
    order: 1;
    padding: 18px;
  }

  .release-card .release-cover {
    order: 2;
    width: 132px;
    height: 132px;
    aspect-ratio: 1 / 1;
    align-self: start;
    border-left: 1px solid var(--line-soft);
    border-bottom: 0;
  }

  .release-card .image-placeholder {
    font-size: 18px;
  }

  .release-card .card-meta {
    margin-bottom: 8px;
    font-size: 9px;
    gap: 6px;
  }

  .release-card .status-badge {
    padding: 2px 5px;
    font-size: 8px;
  }

  .release-card h2 {
    font-size: clamp(20px, 6.2vw, 28px);
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .release-card .release-artist {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .release-card .meta-list {
    margin-top: 12px;
    font-size: 9px;
  }

  .release-card .meta-list div {
    grid-template-columns: 72px 1fr;
    gap: 8px;
    padding-top: 7px;
  }

  .release-card .tracklist-panel {
    margin-top: 14px;
    padding-top: 12px;
  }

  .release-card .tracklist-label {
    font-size: 9px;
    margin-bottom: 8px;
  }

  .release-card .track-list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 7px;
    padding: 6px 0;
  }

  .release-card .track-title-row {
    gap: 8px;
  }

  .release-card .track-main strong {
    font-size: 10px;
    line-height: 1.25;
  }

  .release-card .track-main em,
  .release-card .track-no,
  .release-card .track-duration {
    font-size: 9px;
  }

  .artist-image,
  .project-image,
  .store-image {
    height: 260px;
  }

  .transmission-strip {
    flex-direction: column;
  }

  #startTransmission,
  button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  #app {
    padding: 14px;
  }

  .hero-right {
    min-height: 360px;
  }

  .hero-right::before {
    width: 74%;
    height: 54%;
    left: 2%;
  }

  .hero-right::after {
    width: 60%;
    height: 36%;
    right: 0;
    top: 22%;
  }

  .panel {
    min-height: 180px;
    padding: 22px;
  }

  .main-nav a {
    padding: 20px 14px;
    font-size: 16px;
  }
}


/* ARTIST IMAGE LINK + CENTER FIX
   Artist portraits stay centered, while release covers can stay top-aligned.
*/

.artist-image {
  display: block;
  text-decoration: none;
  cursor: default;
}

.artist-image-link {
  cursor: pointer;
}

.artist-image img {
  object-position: center center;
}

.artist-image-link::after {
  content: "OPEN";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: 160ms ease;
  pointer-events: none;
}

.artist-image-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.artist-image-link:hover img {
  filter: grayscale(0) contrast(1.12) saturate(1.05);
}

/* Keep release covers aligned from top. */
.release-cover img {
  object-position: center top;
}


/* LAYERED BACKGROUND TILE TUNING
   The 4 tile images are layered, not arranged as a grid.
   To make texture stronger: lower the first overlay alpha in body background.
   Current overlay: 0.72 / 0.88.
   Example stronger: 0.62 / 0.80.
   Example subtler: 0.82 / 0.92.

   To resize texture: edit the 4 tile background-size values:
   560px, 840px, 1180px, 1560px.
   Using different sizes helps avoid a checkerboard/catur effect.
*/

/* HOME VISUAL DATABASE REVISION
   Latest hero boxes now use latest release cover + related artist image.
   Bottom homepage cards now show random visuals from release / artist / project sheets.
*/

:root {
  --latest-release-cover: linear-gradient(180deg, rgba(28, 45, 44, 0.9), rgba(3, 3, 3, 0.9));
  --latest-artist-image: linear-gradient(180deg, rgba(66, 50, 37, 0.85), rgba(7, 7, 7, 0.95));
}

.hero-right::before {
  background:
    linear-gradient(180deg, rgba(4, 8, 8, 0.38), rgba(3, 3, 3, 0.72)),
    var(--latest-release-cover);
  background-size: cover;
  background-position: center;
}

.hero-right::after {
  background:
    linear-gradient(180deg, rgba(8, 5, 3, 0.26), rgba(7, 7, 7, 0.72)),
    var(--latest-artist-image);
  background-size: cover;
  background-position: center;
}

.section-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  gap: 22px;
  align-items: stretch;
  min-height: 280px;
}

.section-card-copy {
  position: relative;
  min-width: 0;
  padding-bottom: 46px;
}

.section-card-visual {
  min-height: 170px;
  align-self: stretch;
  border-left: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.56)),
    radial-gradient(circle at center, rgba(181, 227, 0, 0.10), transparent 36%),
    #0a0a0a;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15) contrast(1.08) saturate(0.92);
  opacity: 0.92;
  transition: 220ms ease;
}

.section-card:hover .section-card-visual {
  filter: grayscale(0) contrast(1.12) saturate(1.06);
  opacity: 1;
}

.section-card-visual.is-empty {
  display: none;
}

.section-card:has(.section-card-visual.is-empty) {
  grid-template-columns: 1fr;
}

#startTransmission {
  position: relative;
}

#startTransmission::after {
  content: "RANDOM PORTAL";
  display: block;
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

@media (max-width: 980px) {
  .section-card {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .section-card-visual {
    min-height: 150px;
  }
}

@media (max-width: 680px) {
  .section-card {
    grid-template-columns: 1fr;
  }

  .section-card-copy {
    padding-bottom: 36px;
  }

  .section-card-visual {
    order: -1;
    min-height: 180px;
    border-left: 0;
    border-bottom: 1px solid var(--line-soft);
  }
}

.latest-spotify-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--acid-dark);
}

.latest-spotify-link:hover {
  color: var(--text);
  border-color: var(--text);
}

/* CONTACT EMAIL SIZE + SELECTABLE EMAIL */

.contact-card h2[data-setting="email"] {
  font-size: clamp(20px, 3.2vw, 36px);
  line-height: 1.08;
  word-break: break-word;
  overflow-wrap: anywhere;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}

/* ABOUT FROM SHEET */

.about-panel {
  display: grid;
  gap: 24px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.about-card:has(.about-image) {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  align-items: stretch;
}

.about-card-copy {
  min-width: 0;
}

.about-card h2 {
  max-width: 1120px;
}

.about-button {
  display: inline-flex;
  margin-top: 22px;
}

.about-image {
  min-height: 280px;
  border-left: 1px solid var(--line-soft);
  background: #050505;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.12) contrast(1.08) saturate(0.9);
}

/* CONTACT EMAIL SIZE + SELECTABLE EMAIL */

.contact-card h2[data-setting="email"] {
  font-size: clamp(24px, 3.2vw, 46px);
  line-height: 1.08;
  word-break: break-word;
  overflow-wrap: anywhere;
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
}

@media (max-width: 780px) {
  .about-card:has(.about-image) {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
}

.site-footer {
  margin-top: 42px;
  padding: 22px 0 10px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* =========================================================
   V14 FULL HUD INTERFACE
   Ruang Bawah Records — underground archive dashboard system.
   This block intentionally overrides the earlier cleaner catalogue UI.
========================================================= */

:root {
  --hud-bg: #030303;
  --hud-texture-opacity: 0.74;
  --hud-line: rgba(241, 241, 235, 0.15);
  --hud-line-strong: rgba(241, 241, 235, 0.25);
  --hud-panel: rgba(5, 5, 5, 0.62);
  --hud-panel-strong: rgba(7, 7, 7, 0.86);
  --latest-release-cover: linear-gradient(180deg, rgba(28, 45, 44, 0.9), rgba(3, 3, 3, 0.9));
  --latest-artist-image: linear-gradient(180deg, rgba(66, 50, 37, 0.85), rgba(7, 7, 7, 0.95));
}

html {
  background: var(--hud-bg);
}

body {
  background:
    linear-gradient(rgba(3, 3, 3, 0.58), rgba(3, 3, 3, 0.82)),
    var(--rb-bg-1),
    var(--rb-bg-2),
    var(--rb-bg-3),
    var(--rb-bg-4),
    radial-gradient(circle at 20% 20%, rgba(181, 227, 0, 0.08), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 52%, #030303 100%);
  background-repeat: no-repeat, repeat, repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, 680px 680px, 1040px 1040px, 1380px 1380px, 1880px 1880px, auto, auto, auto;
  background-position: center, -120px -80px, 18% 12%, 72% 28%, 50% 80%, center, center, center;
  background-attachment: scroll, fixed, fixed, fixed, fixed, scroll, scroll, scroll;
  color: var(--text);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 48px, rgba(181, 227, 0, 0.08) 49px, transparent 50px),
    linear-gradient(180deg, transparent 0 80px, rgba(241, 241, 235, 0.06) 81px, transparent 82px);
  background-size: 240px 240px;
  mix-blend-mode: screen;
}

#app,
.hud-app {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: 34px 54px 30px;
}

/* GLOBAL HUD HEADER */

.site-header.hud-header,
.hud-header {
  display: grid;
  grid-template-columns: 260px minmax(180px, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--hud-line);
}

.hud-header .brand-logo {
  width: clamp(170px, 11vw, 250px);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.10));
}

.header-context {
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
}

.top-nav {
  gap: 30px;
}

.top-nav a {
  position: relative;
  color: rgba(241, 241, 235, 0.76);
  font-size: 12px;
  letter-spacing: 0.10em;
}

.top-nav a.active,
.top-nav a:hover {
  color: var(--text);
}

.top-nav a.active::after,
.top-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(181, 227, 0, 0.78);
}

/* HOME HERO */

.rb-alt-hero {
  min-height: 650px;
  grid-template-columns: 0.82fr 1.42fr;
  gap: 60px;
  padding: 54px 0 48px;
  border-bottom: 1px solid var(--hud-line);
  position: relative;
}

.rb-alt-hero::before {
  left: 0;
  top: 12%;
  width: 39%;
  height: 78%;
  border-color: rgba(241, 241, 235, 0.10);
}

.hero-side-label {
  position: absolute;
  left: -30px;
  top: 19%;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero-left {
  position: relative;
  z-index: 5;
  padding-left: 56px;
}

.hero-left h1 {
  max-width: 560px;
  font-size: clamp(64px, 6.4vw, 116px);
  line-height: 0.90;
  letter-spacing: -0.04em;
  text-shadow:
    0 2px 0 #000,
    0 0 1px rgba(255,255,255,.35),
    0 0 18px rgba(255,255,255,.06);
}

.hero-left h1::after {
  width: 260px;
  margin-top: 22px;
}

.hero-left .tagline {
  max-width: 500px;
  margin-top: 22px;
}

#startTransmission {
  width: min(310px, 100%);
  margin-top: 32px;
  padding: 17px 22px;
  border: 1px solid rgba(181, 227, 0, 0.82);
  background: rgba(181, 227, 0, 0.04);
  color: var(--acid);
  box-shadow: 0 0 0 1px rgba(181, 227, 0, 0.13) inset;
}

#startTransmission:hover {
  background: var(--acid);
  color: #050505;
}

#startTransmission::after {
  content: "RANDOM PORTAL";
  display: block;
  margin-top: 7px;
  color: currentColor;
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 0.72;
}


/* Home latest release: square cover and safe artist-card stacking. */
/* LATEST RELEASE SYSTEM */

.rb-release-system {
  position: relative;
  min-height: 585px;
  isolation: isolate;
}

.rb-release-system::before,
.rb-release-system::after,
.hero-right::before,
.hero-right::after {
  content: none !important;
}

.latest-info-card,
.latest-cover-frame,
.latest-artist-frame {
  position: absolute;
  border: 1px solid rgba(241, 241, 235, 0.20);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.90), rgba(5, 5, 5, 0.58));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
}

.latest-info-card {
  left: 2%;
  top: 24%;
  z-index: 5;
  width: 34%;
  min-height: 355px;
  padding: 32px;
}

.latest-info-card .panel-label {
  margin-bottom: 34px;
}

.latest-info-card h2 {
  margin: 0 0 10px;
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.latest-info-card #latestArtist {
  margin: 0 0 24px;
  color: var(--acid);
  font-size: 15px;
  font-weight: 800;
}

.latest-meta {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
}

.latest-meta div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.latest-meta dt {
  color: var(--dim);
  text-transform: uppercase;
}

.latest-meta dd {
  margin: 0;
  color: var(--muted);
}

.latest-spotify-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--acid-dark);
}

.latest-spotify-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.latest-cover-frame {
  right: 28%;
  top: 6%;
  z-index: 3;
  width: min(38%, 520px);
  aspect-ratio: 1 / 1;
  margin: 0;
  transform: rotate(-1.2deg);
  overflow: hidden;
}

.latest-cover-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(241, 241, 235, 0.10);
  pointer-events: none;
}

.latest-cover-image {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42)),
    var(--latest-release-cover);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.22) contrast(1.12) saturate(0.92);
}

.latest-cover-frame figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.latest-artist-frame {
  right: 1%;
  top: 25%;
  z-index: 5;
  width: 23%;
  min-height: 370px;
  padding: 18px;
  transform: rotate(1.5deg);
}

.latest-artist-image {
  height: 180px;
  margin-bottom: 18px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.74)),
    var(--latest-artist-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.20) contrast(1.12) saturate(0.86);
}

.latest-artist-frame h3 {
  margin: 8px 0 6px;
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
}

.latest-artist-frame p:not(.panel-label) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.latest-artist-frame a {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.signal-meter {
  position: absolute;
  right: -26px;
  top: 12%;
  display: grid;
  gap: 22px;
  color: rgba(241, 241, 235, 0.28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* HOME MODULE CARDS */

.main-nav {
  display: none;
}

.home-module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(241, 241, 235, 0.18);
  border-left: 1px solid rgba(241, 241, 235, 0.14);
}

.home-module-card {
  position: relative;
  min-height: 235px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  gap: 16px;
  align-items: stretch;
  color: var(--text);
  text-decoration: none;
  border-right: 1px solid rgba(241, 241, 235, 0.14);
  border-bottom: 1px solid rgba(241, 241, 235, 0.14);
  background:
    radial-gradient(circle at 10% 0%, rgba(181, 227, 0, 0.045), transparent 28%),
    rgba(255, 255, 255, 0.012);
  overflow: hidden;
  transition: 180ms ease;
}

.home-module-card:hover {
  background:
    radial-gradient(circle at 10% 0%, rgba(181, 227, 0, 0.11), transparent 30%),
    rgba(255, 255, 255, 0.028);
}

.module-number {
  grid-column: 1 / -1;
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.module-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.home-module-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 1.9vw, 38px);
  line-height: 0.94;
  text-transform: uppercase;
}

.home-module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.module-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--acid);
  font-size: 22px;
}

.module-image {
  min-height: 140px;
  align-self: end;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.68)),
    var(--rb-bg-2);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.30) contrast(1.12) saturate(0.78);
  opacity: 0.92;
}

/* PAGE HUD */

.page-side-label {
  position: fixed;
  left: 18px;
  top: 34%;
}

.hud-page-hero {
  position: relative;
  margin-top: 44px;
  padding: 62px 0 56px;
  border-top: 1px solid var(--hud-line);
  border-bottom: 1px solid var(--hud-line);
}

.hud-page-hero h1 {
  font-size: clamp(58px, 7.2vw, 122px);
  line-height: 0.9;
  max-width: 850px;
}

.hud-page-hero .tagline {
  max-width: 740px;
}

.hud-toolbar {
  margin-top: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--hud-line);
}

.hud-card-grid {
  margin-top: 28px;
}

.artists-grid,
.projects-grid,
.store-grid,
.about-panel,
.contact-panel {
  border-left: 1px solid var(--hud-line);
  border-top: 1px solid var(--hud-line);
}

.records-grid {
  gap: 18px;
}

.data-card,
.contact-card,
.empty-state {
  border-color: var(--hud-line);
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 227, 0, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005)),
    rgba(3, 3, 3, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.records-grid .data-card {
  border: 1px solid var(--hud-line);
}

.release-cover,
.artist-image,
.project-image,
.store-image,
.about-image {
  background-color: #050505;
}

.release-cover img,
.artist-image img,
.project-image img,
.store-image img,
.about-image img {
  filter: grayscale(0.18) contrast(1.14) saturate(0.82);
}

.data-card:hover img {
  filter: grayscale(0.02) contrast(1.14) saturate(1);
}

.card-body {
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22));
}

.release-card .card-body {
  padding: 22px;
}

.release-card h2 {
  font-size: clamp(22px, 1.75vw, 34px);
}

.filter-btn {
  border-color: var(--hud-line-strong);
  background: rgba(5,5,5,.36);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--acid);
  color: #050505;
}

.terminal-card h2,
.contact-card h2[data-setting="email"] {
  max-width: 100%;
  font-size: clamp(30px, 4.4vw, 76px);
  line-height: 0.98;
  overflow-wrap: anywhere;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}

.about-card {
  border-bottom: 1px solid var(--hud-line);
}

/* FOOTER */

.transmission-strip {
  margin-top: 34px;
  border-color: rgba(181, 227, 0, 0.55);
  background: rgba(181, 227, 0, 0.025);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--hud-line);
}

.site-footer p {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-slogan {
  text-align: center;
}

/* RESPONSIVE HUD */

@media (max-width: 1320px) {
  .site-header.hud-header {
    grid-template-columns: 240px 1fr;
  }

  .header-context {
    display: none;
  }

  .top-nav {
    justify-content: flex-end;
  }

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

  .hero-left {
    padding-left: 0;
  }

  .hero-side-label,
  .signal-meter {
    display: none;
  }

  .rb-release-system {
    min-height: 580px;
  }

  .latest-info-card { left: 0; width: 42%; }
  .latest-cover-frame { right: 31%; width: 40%; aspect-ratio: 1 / 1; }
  .latest-artist-frame { right: 0; width: 28%; z-index: 5; }

  .home-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-module-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  #app,
  .hud-app {
    padding: 22px 18px 26px;
  }

  .site-header.hud-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .top-nav {
    justify-content: center;
  }

  .rb-release-system {
    min-height: unset;
    display: grid;
    gap: 16px;
  }

  .latest-info-card,
  .latest-cover-frame,
  .latest-artist-frame {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: unset;
    transform: none;
  }

  .latest-cover-frame {
    aspect-ratio: 1 / 1;
    order: -1;
  }

  .latest-artist-frame {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    align-items: center;
  }

  .latest-artist-image {
    height: 140px;
    margin: 0;
  }

  .home-module-grid {
    grid-template-columns: 1fr;
  }

  .home-module-card,
  .home-module-card:last-child {
    grid-column: auto;
  }

  .hud-page-hero h1 {
    font-size: clamp(48px, 15vw, 82px);
  }

  .site-footer,
  .transmission-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .home-module-card {
    grid-template-columns: 1fr;
  }

  .module-image {
    min-height: 180px;
    order: -1;
  }

  .latest-artist-frame {
    grid-template-columns: 1fr;
  }

  .latest-artist-image {
    height: 190px;
  }

  .terminal-card h2,
  .contact-card h2[data-setting="email"] {
    font-size: clamp(24px, 9vw, 42px);
  }
}


/* =========================================================
   PRESENTATION MODE — CLEAN BUILD
   Data source: RUANGBAWAH_DB / PRESENTATION.
   Supports manual slides, artist/release/project refs, multi refs,
   transparent PNG/SVG images, YouTube embeds, and exit navigation.
========================================================= */

/* Presentation page works like a stage. Header/footer are hidden only here. */
body[data-page="presentation"] {
  overflow: hidden;
}

body[data-page="presentation"] #app {
  width: 100%;
  max-width: none;
  height: 100vh;
  margin: 0;
  padding: 24px 28px;
  overflow: hidden;
}

body[data-page="presentation"] .presentation-header,
body[data-page="presentation"] .page-side-label,
body[data-page="presentation"] .presentation-footer {
  display: none;
}

.presentation-app {
  min-height: 100vh;
}

.presentation-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: calc(100vh - 48px);
  min-height: 0;
  margin: 0;
  border: 1px solid var(--hud-line);
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 227, 0, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.86));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 28px 80px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.presentation-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(241, 241, 235, 0.08);
  pointer-events: none;
}

.presentation-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hud-line);
}

.presentation-topbar p,
#presentationCounter {
  margin: 0;
}

#presentationCounter {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.presentation-viewport {
  position: relative;
  z-index: 2;
  width: min(100%, calc((100vh - 156px) * 16 / 9));
  max-height: calc(100vh - 156px);
  aspect-ratio: 16 / 9;
  margin: auto;
  overflow: hidden;
  border-bottom: 1px solid var(--hud-line);
}

.presentation-deck {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.presentation-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: clamp(20px, 2.8vw, 48px);
  align-items: center;
  padding: clamp(22px, 3vw, 50px);
  opacity: 0.42;
  transform: scale(0.985);
  overflow: hidden;
  transition: 360ms ease;
}

.presentation-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.presentation-slide::after {
  content: "";
  position: absolute;
  left: clamp(22px, 4vw, 58px);
  top: clamp(22px, 4vw, 58px);
  width: 34%;
  height: 72%;
  border-left: 1px solid rgba(241, 241, 235, 0.10);
  border-top: 1px solid rgba(241, 241, 235, 0.10);
  pointer-events: none;
}

.presentation-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.presentation-copy h1 {
  max-width: 980px;
  font-size: clamp(34px, min(5.2vw, 8.6vh), 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.presentation-copy p:not(.eyebrow):not(.presentation-subtitle) {
  max-width: 690px;
  margin: 14px 0 0;
  color: #d2d2c8;
  font-size: clamp(13px, min(1vw, 1.8vh), 17px);
  line-height: 1.42;
}

.presentation-subtitle {
  max-width: 860px;
  margin: 12px 0 0 !important;
  color: var(--acid) !important;
  font-size: clamp(13px, min(1.1vw, 2vh), 18px) !important;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.25 !important;
  text-transform: none;
}

.presentation-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  max-width: 740px;
  margin: 16px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(241, 241, 235, 0.12);
}

.presentation-meta-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.presentation-meta-list dt {
  color: var(--dim);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.presentation-meta-list dd {
  margin: 0;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.presentation-cta,
.presentation-mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(181, 227, 0, 0.72);
  color: var(--acid);
  background: rgba(181, 227, 0, 0.035);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.presentation-cta:hover,
.presentation-mini-cta:hover {
  background: var(--acid);
  color: #050505;
}

.presentation-image-frame {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  max-height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
  align-self: center;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible;
}

.presentation-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  filter: none;
}

.presentation-image-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.presentation-slide-cover .presentation-image-frame img {
  padding: clamp(16px, 3vw, 54px);
  background: transparent !important;
}

.presentation-slide-statement,
.presentation-slide-quote,
.presentation-slide-cta {
  grid-template-columns: minmax(0, 1fr);
}

.presentation-slide-statement .presentation-copy,
.presentation-slide-quote .presentation-copy,
.presentation-slide-cta .presentation-copy {
  max-width: 1100px;
}

.presentation-slide-quote .presentation-copy h1 {
  font-size: clamp(34px, min(4.8vw, 8.2vh), 82px);
}

.presentation-slide-video {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.12fr);
}

.presentation-slide-video .presentation-copy h1 {
  font-size: clamp(32px, min(4.8vw, 8vh), 82px);
}

.presentation-video-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  align-self: center;
  border: 0;
  background: #050505;
  box-shadow: none;
  overflow: hidden;
}

.presentation-video-frame::before {
  content: "VIDEO";
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 3;
  padding: 5px 8px;
  background: var(--acid);
  color: #050505;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.presentation-video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.presentation-video-frame figcaption {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 3;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.presentation-video-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 8px 10px;
  border: 1px solid rgba(181, 227, 0, 0.72);
  background: rgba(5, 5, 5, 0.82);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.presentation-video-open:hover {
  background: var(--acid);
  color: #050505;
}

.presentation-video-open.is-inline {
  position: static;
  display: inline-flex;
  margin-top: 14px;
}

.presentation-video-frame-fallback {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 227, 0, 0.10), transparent 34%),
    #050505;
}

.presentation-video-fallback-copy h2 {
  margin: 8px 0 0;
  color: var(--text);
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 3vw, 52px);
  line-height: 0.95;
}

.presentation-video-fallback-copy p {
  max-width: 520px;
  color: var(--muted);
}

.presentation-slide-multi {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1.24fr);
  gap: clamp(22px, 3vw, 48px);
}

.presentation-copy-multi h1 {
  font-size: clamp(28px, min(3.6vw, 6.5vh), 62px);
}

.presentation-multi-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  align-items: stretch;
  max-height: 100%;
  min-width: 0;
}

.presentation-slide-multi-2 .presentation-multi-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.presentation-slide-multi-3 .presentation-multi-grid,
.presentation-multi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.presentation-mini-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  border: 1px solid rgba(241, 241, 235, 0.12);
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 227, 0, 0.06), transparent 32%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.presentation-mini-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.presentation-mini-image img,
.presentation-mini-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.presentation-mini-image figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
}

.presentation-mini-copy {
  min-height: 0;
  padding: clamp(12px, 1.25vw, 20px);
  overflow: hidden;
}

.presentation-mini-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, min(2vw, 3.6vh), 34px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.presentation-mini-subtitle {
  margin: 9px 0 0 !important;
  color: var(--acid) !important;
  font-size: clamp(10px, min(0.82vw, 1.45vh), 13px) !important;
  font-weight: 800;
  line-height: 1.28 !important;
}

.presentation-mini-copy p:not(.eyebrow):not(.presentation-mini-subtitle) {
  margin: 10px 0 0;
  color: #d2d2c8;
  font-size: clamp(10px, min(0.82vw, 1.45vh), 13px);
  line-height: 1.38;
}

.presentation-mini-cta {
  margin-top: 12px;
  padding: 8px 10px;
  font-size: 9px;
}

.presentation-controls {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--hud-line);
}

.presentation-controls button,
.presentation-exit-button {
  min-height: 39px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid var(--hud-line-strong);
  background: rgba(5, 5, 5, 0.42);
  color: var(--acid);
  box-shadow: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.presentation-controls button:hover:not(:disabled),
.presentation-exit-button:hover {
  background: var(--acid);
  color: #050505;
}

.presentation-controls button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.presentation-exit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.presentation-progress {
  height: 2px;
  background: rgba(241, 241, 235, 0.13);
  overflow: hidden;
}

.presentation-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(181, 227, 0, 0.74);
  transition: width 260ms ease;
}

.presentation-hint {
  display: none;
}

/* Hide Presentation if an older page still includes it in the nav. */
.top-nav a[href="presentation.html"] {
  display: none !important;
}

.presentation-floating-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 13px 15px;
  color: #050505;
  background: var(--acid);
  border: 1px solid rgba(181, 227, 0, 0.95);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 8px 8px 0 rgba(181, 227, 0, 0.18), 0 0 22px rgba(181, 227, 0, 0.32);
  transition: 180ms ease;
}

.presentation-floating-button span {
  opacity: 0.72;
}

.presentation-floating-button strong {
  font-size: 13px;
  line-height: 1;
}

.presentation-floating-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 rgba(181, 227, 0, 0.18), 0 0 28px rgba(181, 227, 0, 0.48);
}

/* Browser fullscreen uses the same 16:9 fit, with smaller chrome. */
.presentation-shell:fullscreen {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100vw;
  height: 100vh;
  margin: 0;
  border: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 227, 0, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.92)),
    #030303;
}

.presentation-shell:fullscreen .presentation-topbar,
.presentation-shell:fullscreen .presentation-controls {
  padding: 12px 18px;
}

.presentation-shell:fullscreen .presentation-viewport {
  width: min(100vw, calc((100vh - 92px) * 16 / 9));
  max-height: calc(100vh - 92px);
  aspect-ratio: 16 / 9;
  margin: auto;
}

.presentation-shell:fullscreen .presentation-slide {
  height: 100%;
  min-height: 0;
  padding: clamp(22px, 3vw, 56px);
}

.presentation-shell:fullscreen .presentation-copy h1 {
  font-size: clamp(34px, min(5.2vw, 8.6vh), 92px);
}

.presentation-shell:fullscreen .presentation-image-frame,
.presentation-shell:fullscreen .presentation-video-frame {
  max-height: 100%;
}

/* Home module mobile arrow + hide presentation entry on mobile. */
@media (max-width: 1100px) {
  .presentation-slide,
  .presentation-slide-video,
  .presentation-slide-multi,
  .presentation-shell:fullscreen .presentation-slide,
  .presentation-shell:fullscreen .presentation-slide-video,
  .presentation-shell:fullscreen .presentation-slide-multi {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .presentation-slide-multi-2 .presentation-multi-grid,
  .presentation-slide-multi-3 .presentation-multi-grid,
  .presentation-multi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body[data-page="presentation"] {
    overflow: auto;
  }

  body[data-page="presentation"] #app {
    height: auto;
    min-height: 100vh;
    padding: 14px;
    overflow: visible;
  }

  .presentation-shell {
    height: auto;
    min-height: calc(100vh - 28px);
  }

  .presentation-viewport {
    width: 100%;
    max-height: none;
    aspect-ratio: auto;
  }

  .presentation-slide {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .presentation-copy h1 {
    font-size: clamp(36px, 13vw, 62px);
  }

  .presentation-image-frame,
  .presentation-video-frame {
    aspect-ratio: 16 / 10;
  }

  .presentation-controls {
    grid-template-columns: 1fr;
  }

  .presentation-controls button,
  .presentation-exit-button {
    width: 100%;
  }

  .presentation-floating-button {
    display: none !important;
  }

  .home-module-card .module-copy {
    padding-bottom: 30px;
  }

  .home-module-card .module-arrow {
    left: auto;
    right: 0;
    bottom: 0;
  }
}

/* FIX: Multi-slide title auto adjust */
.presentation-slide-multi {
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1.18fr);
  gap: clamp(18px, 2.2vw, 38px);
}

.presentation-copy-multi {
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.presentation-copy-multi h1 {
  max-width: 100%;
  font-size: clamp(26px, min(3.05vw, 5.2vh), 54px);
  line-height: 0.92;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* Kalau fullscreen, title multi dibuat lebih aman */
.presentation-shell:fullscreen .presentation-copy-multi h1 {
  font-size: clamp(24px, min(2.8vw, 5vh), 50px);
}

/* Kalau item-nya 3, title kiri lebih kecil lagi */
.presentation-slide-multi-3 .presentation-copy-multi h1 {
  font-size: clamp(24px, min(2.65vw, 4.8vh), 48px);
}

/* =========================================================
   PRESENTATION REVISIONS: square release covers + blank slide
   - release multi cards use album-cover square ratio
   - blank slide behaves as a manual freeform text + image page
========================================================= */

.presentation-mini-card-release .presentation-mini-image {
  aspect-ratio: 1 / 1;
}

.presentation-mini-card-release .presentation-mini-image img,
.presentation-mini-card-release .presentation-mini-image .image-placeholder {
  object-fit: cover;
  object-position: center;
}

.presentation-slide-release:not(.presentation-slide-multi) .presentation-image-frame {
  aspect-ratio: 1 / 1;
  max-width: min(100%, 62vh);
}

.presentation-slide-blank {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.9fr);
}

.presentation-slide-blank .presentation-copy h1 {
  font-size: clamp(36px, min(5vw, 8vh), 86px);
}

.presentation-slide-blank .presentation-image-frame {
  aspect-ratio: 16 / 10;
}

.presentation-slide-blank .presentation-image-frame img {
  object-fit: contain;
}

.presentation-shell:fullscreen .presentation-slide-blank .presentation-copy h1 {
  font-size: clamp(34px, min(4.6vw, 7.4vh), 82px);
}

@media (max-width: 980px) {
  .presentation-slide-blank {
    grid-template-columns: 1fr;
  }
}

/* Performance: avoid rendering offscreen cards on long archive pages. */
.records-grid .data-card,
.artists-grid .data-card,
.projects-grid .data-card,
.store-grid .data-card {
  content-visibility: auto;
  contain-intrinsic-size: 540px;
}


/* =========================================================
   V26 PERFORMANCE CORE
   - Fonts are now loaded from <head>, not @import.
   - Heavy texture background is painted once as a fixed app layer.
   - Body no longer uses background-attachment: fixed during scroll.
   - Long archive cards use content-visibility to reduce offscreen paint.
========================================================= */

body {
  background: #050505 !important;
  background-attachment: scroll !important;
}

#app,
.hud-app {
  position: relative;
  isolation: isolate;
}

#app::before,
.hud-app::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(3, 3, 3, 0.58), rgba(3, 3, 3, 0.82)),
    var(--rb-bg-1),
    var(--rb-bg-2),
    var(--rb-bg-3),
    var(--rb-bg-4),
    radial-gradient(circle at 20% 20%, rgba(181, 227, 0, 0.08), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 52%, #030303 100%);
  background-repeat: no-repeat, repeat, repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, 680px 680px, 1040px 1040px, 1380px 1380px, 1880px 1880px, auto, auto, auto;
  background-position: center, -120px -80px, 18% 12%, 72% 28%, 50% 80%, center, center, center;
  background-blend-mode: normal, screen, overlay, soft-light, multiply, normal, normal, normal;
  transform: translateZ(0);
  will-change: transform;
}

.records-grid .data-card,
.artists-grid .data-card,
.projects-grid .data-card,
.store-grid .data-card {
  content-visibility: auto;
  contain-intrinsic-size: 540px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
/* END V26 PERFORMANCE CORE */



/* =========================================================
   PROJECT LIST VIEW
   Spotify-style vertical rows for project archive.
========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line-soft);
  border-left: 0;
}

.project-list-item.data-card {
  display: grid;
  grid-template-columns: clamp(76px, 8vw, 112px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 14px 18px;
  border-right: 0;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 0% 50%, rgba(181, 227, 0, 0.045), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
}

.project-list-item.data-card:hover {
  background:
    radial-gradient(circle at 0% 50%, rgba(181, 227, 0, 0.09), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.project-list-image {
  width: clamp(76px, 8vw, 112px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(181, 227, 0, 0.06);
}

.project-list-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.08) contrast(1.08) saturate(0.9);
  transition: 260ms ease;
}

.project-list-item:hover .project-list-image img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.1) saturate(1);
}

.project-list-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--acid);
  font-family: "Archivo Black", Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  letter-spacing: -0.04em;
  background:
    radial-gradient(circle at center, rgba(181, 227, 0, 0.14), transparent 46%),
    #101407;
}

.project-list-body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.project-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-list-meta span + span::before {
  content: "•";
  margin: 0 8px;
  color: var(--dim);
}

.project-list-item .project-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1.02;
}

.project-description {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.project-list-item .card-link-inline {
  width: fit-content;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .project-list-item.data-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 0;
  }

  .project-list-image {
    width: 68px;
  }

  .project-list-item .project-title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .project-description {
    font-size: 12px;
  }
}

/* =========================================================
   PROJECT LIST DATE RANGE + STATUS COLORS
========================================================= */

.project-list-meta {
  gap: 8px;
}

.project-list-meta span + span::before {
  content: none;
  margin: 0;
}

.project-status-pill,
.project-date-label,
.project-location-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid rgba(154, 154, 143, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  line-height: 1;
}

.project-status-pill {
  font-weight: 900;
}

.project-status-upcoming,
.project-status-scheduled {
  border-color: rgba(90, 174, 245, 0.78);
  background: rgba(90, 174, 245, 0.14);
  color: #5aaef5;
}

.project-status-ongoing {
  border-color: rgba(0, 105, 190, 0.9);
  background: rgba(0, 105, 190, 0.18);
  color: #2f9de6;
}

.project-status-completed,
.project-status-released,
.project-status-active {
  border-color: rgba(28, 139, 81, 0.9);
  background: rgba(28, 139, 81, 0.18);
  color: #35c77a;
}

.project-status-canceled,
.project-status-cancelled {
  border-color: rgba(185, 9, 20, 0.92);
  background: rgba(185, 9, 20, 0.18);
  color: #ff5b64;
}

.project-status-draft {
  border-color: rgba(214, 170, 78, 0.86);
  background: rgba(214, 170, 78, 0.16);
  color: #e8bd67;
}

.project-status-archived {
  border-color: rgba(116, 72, 159, 0.9);
  background: rgba(116, 72, 159, 0.18);
  color: #b48bdf;
}

.project-status-hidden {
  border-color: rgba(255, 136, 136, 0.92);
  background: rgba(255, 136, 136, 0.16);
  color: #ff9a9a;
}

.project-date-label,
.project-location-label {
  border-color: rgba(241, 241, 235, 0.14);
  color: var(--muted);
}

.project-list-image .image-placeholder {
  padding: 8px;
  text-align: center;
  font-size: clamp(18px, 1.7vw, 30px);
  line-height: 0.9;
}

@media (max-width: 680px) {
  .project-list-meta {
    gap: 6px;
  }

  .project-status-pill,
  .project-date-label,
  .project-location-label {
    min-height: 20px;
    padding: 3px 7px;
    font-size: 9px;
  }
}

/* =========================================================
   PROJECT META CLEANUP
   Date and location are plain text; only status keeps the pill border.
========================================================= */

.project-date-label,
.project-location-label {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.project-date-label::before,
.project-location-label::before {
  content: none;
}

@media (max-width: 680px) {
  .project-date-label,
  .project-location-label {
    min-height: 0;
    padding: 0;
    border: 0;
    font-size: 9px;
  }
}

/* =========================================================
   PROJECT STATUS BADGE: SQUARE STYLE
   Match record status badge shape; keep project-specific colors.
========================================================= */

.project-status-pill {
  border-radius: 0 !important;
  padding: 3px 7px;
  min-height: 0;
  line-height: 1;
}

@media (max-width: 680px) {
  .project-status-pill {
    border-radius: 0 !important;
    padding: 2px 6px;
  }
}

/* =========================================================
   RECORD STATUS COLORS
   Square status badges aligned with project status colors.
========================================================= */

.release-card .status-badge {
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
}

.status-badge-scheduled,
.status-badge-upcoming {
  border-color: rgba(96, 165, 250, 0.78);
  background: rgba(96, 165, 250, 0.16);
  color: #7dc7ff;
}

.status-badge-released,
.status-badge-active,
.status-badge-available,
.status-badge-completed {
  border-color: rgba(34, 197, 94, 0.78);
  background: rgba(34, 197, 94, 0.16);
  color: #62e6a2;
}

.status-badge-draft {
  border-color: rgba(245, 199, 113, 0.78);
  background: rgba(245, 199, 113, 0.16);
  color: #f5c771;
}

.status-badge-archived,
.status-badge-archive {
  border-color: rgba(168, 85, 247, 0.78);
  background: rgba(168, 85, 247, 0.16);
  color: #c59cff;
}

.status-badge-hidden {
  border-color: rgba(255, 132, 132, 0.78);
  background: rgba(255, 132, 132, 0.16);
  color: #ff9a9a;
}

.status-badge-canceled,
.status-badge-cancelled,
.status-badge-inactive,
.status-badge-disabled,
.status-badge-voided {
  border-color: rgba(239, 68, 68, 0.78);
  background: rgba(239, 68, 68, 0.16);
  color: #ff7b7b;
}

.status-badge-ongoing {
  border-color: rgba(37, 99, 235, 0.78);
  background: rgba(37, 99, 235, 0.16);
  color: #7ab0ff;
}

/* =========================================================
   ABOUT JOURNAL LAYOUT — v36
   Dynamic chapter-like sections, smaller titles, clean images.
========================================================= */

body[data-page="about"] .about-panel {
  display: grid;
  gap: clamp(52px, 7vw, 118px);
  border: 0 !important;
  border-left: 0 !important;
  border-top: 0 !important;
  margin-top: clamp(34px, 5vw, 76px);
}

body[data-page="about"] .about-card,
body[data-page="about"] .about-journal-section {
  display: grid;
  min-height: 0;
  padding: 0;
  border: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="about"] .about-card::before,
body[data-page="about"] .about-card::after,
body[data-page="about"] .about-journal-section::before,
body[data-page="about"] .about-journal-section::after {
  display: none !important;
}

body[data-page="about"] .about-card-copy {
  min-width: 0;
  align-self: center;
}

body[data-page="about"] .about-card .panel-label {
  margin-bottom: clamp(14px, 1.3vw, 22px);
  color: var(--acid);
}

body[data-page="about"] .about-card h2 {
  max-width: min(980px, 100%);
  margin: 0;
  font-size: clamp(38px, 5.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

body[data-page="about"] .about-card p:not(.panel-label) {
  max-width: 760px;
  margin-top: clamp(18px, 1.8vw, 28px);
  color: #bfc0b7;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.75;
}

body[data-page="about"] .about-button {
  margin-top: 24px;
}

body[data-page="about"] .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: clamp(8px, 1.4vw, 22px);
  border: 0 !important;
  border-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

body[data-page="about"] .about-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(260px, 34vw, 520px);
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  filter: grayscale(0.04) contrast(1.08) saturate(0.95);
}

body[data-page="about"] .about-layout-text {
  max-width: 980px;
}

body[data-page="about"] .about-layout-split {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

body[data-page="about"] .about-layout-reverse {
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
}

body[data-page="about"] .about-layout-reverse .about-image {
  order: -1;
}

body[data-page="about"] .about-layout-stack {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
}

body[data-page="about"] .about-layout-stack .about-card-copy {
  max-width: 980px;
}

body[data-page="about"] .about-layout-stack .about-image {
  justify-content: flex-start;
  padding-left: 0;
}

body[data-page="about"] .about-layout-stack .about-image img {
  max-height: clamp(220px, 30vw, 420px);
}

body[data-page="about"] .about-layout-wide {
  grid-template-columns: minmax(0, 0.78fr) minmax(220px, 0.42fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: end;
}

body[data-page="about"] .about-layout-wide .about-card-copy p:not(.panel-label) {
  max-width: 880px;
}

body[data-page="about"] .about-layout-image-led {
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 0.82fr);
  gap: clamp(34px, 4.6vw, 78px);
  align-items: center;
}

body[data-page="about"] .about-layout-image-led .about-image {
  order: -1;
}

body[data-page="about"] .about-layout-image-led .about-image img {
  max-height: clamp(300px, 40vw, 620px);
}

@media (max-width: 900px) {
  body[data-page="about"] .about-panel {
    gap: 58px;
  }

  body[data-page="about"] .about-layout-split,
  body[data-page="about"] .about-layout-reverse,
  body[data-page="about"] .about-layout-wide,
  body[data-page="about"] .about-layout-image-led {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-layout-reverse .about-image,
  body[data-page="about"] .about-layout-image-led .about-image {
    order: initial;
  }

  body[data-page="about"] .about-card h2 {
    font-size: clamp(34px, 10vw, 62px);
  }

  body[data-page="about"] .about-image {
    justify-content: flex-start;
    padding-left: 0;
  }

  body[data-page="about"] .about-image img {
    max-height: 360px;
  }
}

/* =========================================================
   ABOUT NARRATIVE LAYOUT — v37
   Make About read like a narrative/article page, not card panels.
========================================================= */

body[data-page="about"] .page-hero {
  padding-bottom: clamp(34px, 5vw, 72px);
}

body[data-page="about"] .page-hero h1 {
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.88;
}

body[data-page="about"] .page-hero .tagline {
  max-width: 760px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}

body[data-page="about"] .about-panel {
  display: block;
  max-width: min(100%, 1320px);
  margin-top: clamp(40px, 6vw, 92px);
  border: 0 !important;
  background: transparent !important;
}

body[data-page="about"] .about-narrative-flow {
  display: grid;
  gap: clamp(58px, 8vw, 132px);
}

body[data-page="about"] .about-card,
body[data-page="about"] .about-journal-section,
body[data-page="about"] .about-narrative-section {
  display: grid;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body[data-page="about"] .about-card::before,
body[data-page="about"] .about-card::after,
body[data-page="about"] .about-journal-section::before,
body[data-page="about"] .about-journal-section::after,
body[data-page="about"] .about-narrative-section::before,
body[data-page="about"] .about-narrative-section::after {
  content: none !important;
  display: none !important;
}

body[data-page="about"] .about-narrative-copy {
  min-width: 0;
  max-width: 820px;
}

body[data-page="about"] .about-kicker {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

body[data-page="about"] .about-narrative-title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(28px, 4vw, 58px) !important;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

body[data-page="about"] .about-narrative-title::after {
  width: min(220px, 44%);
  margin-top: 18px;
  opacity: 0.55;
}

body[data-page="about"] .about-narrative-body {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin-top: clamp(18px, 2vw, 30px);
}

body[data-page="about"] .about-narrative-body p,
body[data-page="about"] .about-card p:not(.panel-label) {
  max-width: 780px;
  margin: 0 0 1.05em;
  color: #c8c9c0;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.86;
  letter-spacing: 0.006em;
}

body[data-page="about"] .about-narrative-body p:last-child {
  margin-bottom: 0;
}

body[data-page="about"] .about-button {
  margin-top: 26px;
}

body[data-page="about"] .about-image,
body[data-page="about"] .about-narrative-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0 !important;
  width: 100%;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body[data-page="about"] .about-image img,
body[data-page="about"] .about-narrative-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(220px, 28vw, 430px);
  object-fit: contain !important;
  object-position: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: grayscale(0.03) contrast(1.06) saturate(0.96);
}

body[data-page="about"] .about-narrative-text {
  max-width: 860px;
}

body[data-page="about"] .about-narrative-lead,
body[data-page="about"] .about-narrative-text-image {
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 0.46fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

body[data-page="about"] .about-narrative-image-text,
body[data-page="about"] .about-narrative-image-left {
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 0.86fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

body[data-page="about"] .about-narrative-image-text .about-image,
body[data-page="about"] .about-narrative-image-left .about-image {
  order: -1;
}

body[data-page="about"] .about-narrative-image-right {
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 0.46fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

body[data-page="about"] .about-narrative-stack,
body[data-page="about"] .about-narrative-feature {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 46px);
}

body[data-page="about"] .about-narrative-stack .about-narrative-copy,
body[data-page="about"] .about-narrative-feature .about-narrative-copy {
  max-width: 900px;
}

body[data-page="about"] .about-narrative-stack .about-image,
body[data-page="about"] .about-narrative-feature .about-image {
  justify-content: flex-start;
}

body[data-page="about"] .about-narrative-stack .about-image img,
body[data-page="about"] .about-narrative-feature .about-image img {
  max-height: clamp(180px, 22vw, 340px);
}

@media (min-width: 1180px) {
  body[data-page="about"] .about-narrative-feature {
    grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
    align-items: end;
  }
}

@media (max-width: 900px) {
  body[data-page="about"] .about-narrative-flow {
    gap: 62px;
  }

  body[data-page="about"] .about-narrative-lead,
  body[data-page="about"] .about-narrative-text-image,
  body[data-page="about"] .about-narrative-image-text,
  body[data-page="about"] .about-narrative-image-left,
  body[data-page="about"] .about-narrative-image-right,
  body[data-page="about"] .about-narrative-feature {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-narrative-image-text .about-image,
  body[data-page="about"] .about-narrative-image-left .about-image {
    order: initial;
  }

  body[data-page="about"] .about-narrative-title {
    font-size: clamp(28px, 9vw, 50px) !important;
  }

  body[data-page="about"] .about-image,
  body[data-page="about"] .about-narrative-image,
  body[data-page="about"] .about-narrative-stack .about-image,
  body[data-page="about"] .about-narrative-feature .about-image {
    justify-content: flex-start;
  }

  body[data-page="about"] .about-image img,
  body[data-page="about"] .about-narrative-image img {
    max-height: 320px;
  }
}

/* =========================================================
   ABOUT TEXT-ONLY WIDTH REFINEMENT — v39
   - Restores About margins/positioning to the previous narrative layout.
   - Keeps sections without images wider so text can use the available column.
========================================================= */

body[data-page="about"] .about-narrative-text {
  width: 100%;
  max-width: 100%;
}

body[data-page="about"] .about-narrative-text .about-narrative-copy {
  width: 100%;
  max-width: 100%;
}

body[data-page="about"] .about-narrative-text .about-narrative-title {
  max-width: min(100%, 1120px);
}

body[data-page="about"] .about-narrative-text .about-narrative-body,
body[data-page="about"] .about-narrative-text .about-narrative-body p {
  max-width: min(100%, 1080px);
}

/* =========================================================
   CONTACT LOCATION — v40
   Reads location_label, location_detail, and google_maps_url from SETTINGS.
========================================================= */

.contact-location-block {
  max-width: 720px;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.contact-location-label {
  margin: 0 0 8px;
  color: var(--acid) !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-location-main {
  margin: 0;
  color: var(--text) !important;
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.contact-location-detail {
  margin: 8px 0 0;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .contact-location-block {
    margin-top: 22px;
  }

  .contact-location-main {
    font-size: 20px;
  }
}

/* =========================================================
   ABOUT CONTENT CENTER — v44
   Center only the dynamic About content area.
   Page hero, footer, header, and other sections stay unchanged.
========================================================= */

body[data-page="about"] #aboutContent.about-panel,
body[data-page="about"] #aboutContent {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="about"] #aboutContent .about-narrative-flow {
  width: 100%;
}

body[data-page="about"] #aboutContent .about-narrative-section,
body[data-page="about"] #aboutContent .about-card,
body[data-page="about"] #aboutContent .about-journal-section {
  text-align: left;
}

body[data-page="about"] #aboutContent .about-narrative-text,
body[data-page="about"] #aboutContent .about-narrative-text .about-narrative-copy {
  width: 100%;
  max-width: 100%;
}

body[data-page="about"] #aboutContent .about-narrative-text .about-narrative-title {
  max-width: min(100%, 1120px);
}

body[data-page="about"] #aboutContent .about-narrative-text .about-narrative-body,
body[data-page="about"] #aboutContent .about-narrative-text .about-narrative-body p {
  max-width: min(100%, 1080px);
}

@media (max-width: 760px) {
  body[data-page="about"] #aboutContent.about-panel,
  body[data-page="about"] #aboutContent {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================================================
   ABOUT IMAGE SIDE ALIGNMENT — v45
   Desktop: image sits to the right of the body narrative.
   Mobile: image returns below the text.
========================================================= */

@media (min-width: 901px) {
  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image),
  body[data-page="about"] #aboutContent .about-card:has(.about-image),
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image),
  body[data-page="about"] #aboutContent .about-narrative-lead,
  body[data-page="about"] #aboutContent .about-narrative-text-image,
  body[data-page="about"] #aboutContent .about-narrative-image-text,
  body[data-page="about"] #aboutContent .about-narrative-image-left,
  body[data-page="about"] #aboutContent .about-narrative-image-right,
  body[data-page="about"] #aboutContent .about-narrative-stack:has(.about-image),
  body[data-page="about"] #aboutContent .about-narrative-feature:has(.about-image) {
    display: grid !important;
    grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr) !important;
    gap: clamp(34px, 4.4vw, 76px) !important;
    align-items: start !important;
  }

  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image) .about-narrative-copy,
  body[data-page="about"] #aboutContent .about-card:has(.about-image) .about-narrative-copy,
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image) .about-narrative-copy {
    grid-column: 1;
    max-width: 100%;
  }

  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image) .about-image,
  body[data-page="about"] #aboutContent .about-card:has(.about-image) .about-image,
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image) .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image-text .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image-left .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image-right .about-image,
  body[data-page="about"] #aboutContent .about-narrative-stack .about-image,
  body[data-page="about"] #aboutContent .about-narrative-feature .about-image {
    grid-column: 2;
    order: initial !important;
    align-self: start;
    justify-content: center;
    margin-top: clamp(66px, 6vw, 104px);
  }

  body[data-page="about"] #aboutContent .about-image img,
  body[data-page="about"] #aboutContent .about-narrative-image img,
  body[data-page="about"] #aboutContent .about-narrative-stack .about-image img,
  body[data-page="about"] #aboutContent .about-narrative-feature .about-image img {
    width: auto;
    max-width: 78%;
    max-height: clamp(170px, 20vw, 310px);
    object-fit: contain !important;
  }
}

@media (max-width: 900px) {
  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image),
  body[data-page="about"] #aboutContent .about-card:has(.about-image),
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image),
  body[data-page="about"] #aboutContent .about-narrative-lead,
  body[data-page="about"] #aboutContent .about-narrative-text-image,
  body[data-page="about"] #aboutContent .about-narrative-image-text,
  body[data-page="about"] #aboutContent .about-narrative-image-left,
  body[data-page="about"] #aboutContent .about-narrative-image-right,
  body[data-page="about"] #aboutContent .about-narrative-stack:has(.about-image),
  body[data-page="about"] #aboutContent .about-narrative-feature:has(.about-image) {
    grid-template-columns: 1fr !important;
  }

  body[data-page="about"] #aboutContent .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image,
  body[data-page="about"] #aboutContent .about-narrative-stack .about-image,
  body[data-page="about"] #aboutContent .about-narrative-feature .about-image {
    order: initial !important;
    margin-top: 22px;
    justify-content: flex-start;
  }

  body[data-page="about"] #aboutContent .about-image img,
  body[data-page="about"] #aboutContent .about-narrative-image img {
    max-width: min(78%, 420px);
    max-height: 280px;
  }
}

/* =========================================================
   ABOUT TEXT WIDE + TIGHTER SECTION GAP — v46
   - Wider body text on desktop so it reaches closer to the image column.
   - About section spacing reduced around 50%.
   - Mobile keeps image below body text.
========================================================= */

body[data-page="about"] .about-narrative-flow {
  gap: clamp(29px, 4vw, 66px) !important;
}

@media (min-width: 901px) {
  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image),
  body[data-page="about"] #aboutContent .about-card:has(.about-image),
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image),
  body[data-page="about"] #aboutContent .about-narrative-lead,
  body[data-page="about"] #aboutContent .about-narrative-text-image,
  body[data-page="about"] #aboutContent .about-narrative-image-text,
  body[data-page="about"] #aboutContent .about-narrative-image-left,
  body[data-page="about"] #aboutContent .about-narrative-image-right,
  body[data-page="about"] #aboutContent .about-narrative-stack:has(.about-image),
  body[data-page="about"] #aboutContent .about-narrative-feature:has(.about-image) {
    grid-template-columns: minmax(0, 1fr) minmax(210px, clamp(230px, 22vw, 330px)) !important;
    gap: clamp(24px, 3.2vw, 54px) !important;
  }

  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image) .about-narrative-copy,
  body[data-page="about"] #aboutContent .about-card:has(.about-image) .about-narrative-copy,
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image) .about-narrative-copy,
  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image) .about-narrative-body,
  body[data-page="about"] #aboutContent .about-card:has(.about-image) .about-narrative-body,
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image) .about-narrative-body,
  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image) .about-narrative-body p,
  body[data-page="about"] #aboutContent .about-card:has(.about-image) .about-narrative-body p,
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image) .about-narrative-body p {
    max-width: 100% !important;
  }

  body[data-page="about"] #aboutContent .about-narrative-section:has(.about-image) .about-image,
  body[data-page="about"] #aboutContent .about-card:has(.about-image) .about-image,
  body[data-page="about"] #aboutContent .about-journal-section:has(.about-image) .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image-text .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image-left .about-image,
  body[data-page="about"] #aboutContent .about-narrative-image-right .about-image,
  body[data-page="about"] #aboutContent .about-narrative-stack .about-image,
  body[data-page="about"] #aboutContent .about-narrative-feature .about-image {
    margin-top: clamp(56px, 5vw, 92px) !important;
  }

  body[data-page="about"] #aboutContent .about-image img,
  body[data-page="about"] #aboutContent .about-narrative-image img,
  body[data-page="about"] #aboutContent .about-narrative-stack .about-image img,
  body[data-page="about"] #aboutContent .about-narrative-feature .about-image img {
    max-width: 74% !important;
    max-height: clamp(150px, 18vw, 280px) !important;
  }
}

@media (max-width: 900px) {
  body[data-page="about"] .about-narrative-flow {
    gap: 38px !important;
  }
}
