@font-face {
  font-family: "Work Sans";
  src: url("../assets/WorkSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Horizon";
  src: url("../assets/Horizon.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  background-clip: content-box;
}


body {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: #191919;
  background: #fff;
  overflow-x: hidden;
  zoom: 0.9;
}

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

.detail-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8%;
  border-bottom: 1px solid rgba(140, 82, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.detail-nav a {
  color: #8c52ff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.case-nav {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-home,
.nav-portfolio-toggle {
  min-height: 42px;
  border: 1px solid rgba(140, 82, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  color: #8c52ff;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-home {
  display: grid;
  width: 42px;
  place-items: center;
  font-size: 14px;
  text-decoration: none;
}

.nav-portfolio {
  position: relative;
}

.nav-portfolio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px 0 17px;
  font: inherit;
  cursor: pointer;
}

.nav-portfolio-toggle::before {
  content: "Portfolio";
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-portfolio-toggle::after {
  content: "▾";
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  transform: translateY(1px);
}

.hamburger-lines {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 16px;
  height: 14px;
}

.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-portfolio-toggle i {
  color: #8c52ff;
  font-size: 10.5px;
  transition: transform 180ms ease;
}

.nav-portfolio-links {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 100%;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-portfolio-links::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px -12px;
}

.nav-portfolio-links::before {
  content: "";
  position: absolute;
  right: auto;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-portfolio.is-open .nav-portfolio-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-portfolio:hover .nav-portfolio-toggle i,
.nav-portfolio:focus-within .nav-portfolio-toggle i {
  transform: rotate(90deg);
}

.nav-home:hover,
.nav-portfolio:hover .nav-portfolio-toggle,
.nav-portfolio:focus-within .nav-portfolio-toggle,
.nav-portfolio.is-open .nav-portfolio-toggle {
  background: #8c52ff;
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  transform: translateY(-2px);
}

.nav-portfolio:hover .nav-portfolio-toggle span,
.nav-portfolio:focus-within .nav-portfolio-toggle span,
.nav-portfolio:hover .nav-portfolio-toggle i,
.nav-portfolio:focus-within .nav-portfolio-toggle i,
.nav-portfolio.is-open .nav-portfolio-toggle .hamburger-lines span {
  color: #fff;
}

.nav-portfolio.is-open .hamburger-lines span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-portfolio.is-open .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.nav-portfolio.is-open .hamburger-lines span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-portfolio-links a {
  position: relative;
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px 10px;
  border: 1.2px solid rgba(140, 82, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.07);
  color: #8c52ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-portfolio-links a + a::before {
  content: none;
}

.nav-portfolio-links a:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.detail-menu {
  position: fixed;
  z-index: 30;
  top: 18px;
  right: 18px;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.detail-menu-toggle {
  position: relative;
  width: 44px;
  height: 46px;
  border: 1px solid rgba(140, 82, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.1);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.detail-menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #8c52ff;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.detail-menu-toggle span:nth-child(1) {
  top: 16px;
}

.detail-menu-toggle span:nth-child(2) {
  top: 22px;
}

.detail-menu-toggle span:nth-child(3) {
  top: 28px;
}

.detail-menu.is-open .detail-menu-toggle span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.detail-menu.is-open .detail-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.detail-menu.is-open .detail-menu-toggle span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.detail-menu-links {
  display: grid;
  min-width: 230px;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(140, 82, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(25, 25, 25, 0.12);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.detail-menu.is-open .detail-menu-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.detail-menu-links a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #8c52ff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-menu-links a:hover {
  background: #8c52ff;
  color: #fff;
}

.project-hero {
  padding: 78px 8% 68px;
  color: #fff;
  background: #8c52ff;
}

.project-hero-compact {
  padding-top: 42px;
  padding-bottom: 38px;
}

.project-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.project-hero-compact .project-hero-inner {
  display: block;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #ffc700;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
.section-title {
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
}

.project-hero-compact h1 {
  max-width: 1120px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
}

.project-hero p {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.38;
  font-weight: 330;
}

.project-hero-compact p {
  max-width: 780px;
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-meta {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
}

.hero-meta div {
  padding-top: 12px;
  border-top: 3px solid #ffc700;
}

.hero-meta strong {
  display: block;
  margin-bottom: 5px;
  color: #ffc700;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta span {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 430;
}

.hero-meta-snapshot {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 0;
  border-radius: 10px;
  color: #191919;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(45, 16, 111, 0.16);
}

.meta-title {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 2px;
  color: #8c52ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta-snapshot div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(140, 82, 255, 0.16);
  border-top: 4px solid #ffc700;
  border-radius: 6px;
  background: #fff;
}

.hero-meta-snapshot strong {
  color: #8c52ff;
  font-size: 11px;
}

.hero-meta-snapshot span {
  color: #191919;
  font-size: 15px;
  line-height: 1.28;
  font-weight: 460;
}

.project-snapshot-section {
  padding-top: 54px;
  padding-bottom: 58px;
  background: #fff;
}

.project-snapshot-section .hero-meta-snapshot {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.project-snapshot-section .meta-title {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #ffc700;
}

.project-snapshot-section .hero-meta-snapshot div {
  min-height: 116px;
  padding: 22px;
  border-color: rgba(140, 82, 255, 0.22);
  box-shadow: 0 12px 30px rgba(45, 16, 111, 0.06);
}

.workflow-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin: -10px 0 30px;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.workflow-snapshot div {
  padding-top: 14px;
  border-top: 4px solid #ffc700;
}

.workflow-snapshot strong {
  display: block;
  margin-bottom: 7px;
  color: #ffc700;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-snapshot span {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 470;
}

.workflow-overview-section {
  padding-top: 72px;
  color: #fff;
  background: #8c52ff;
}

.workflow-overview-section .detail-inner {
  max-width: 1180px;
}

.workflow-overview-section .workflow-snapshot {
  width: 100%;
  max-width: none;
  margin: 0 0 66px;
  padding: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.workflow-snapshot h2 {
  grid-column: 1 / -1;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.92;
  font-weight: 400;
  text-align: left;
}

.workflow-overview-section .workflow-snapshot div {
  min-height: 122px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-top: 4px solid #ffc700;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.workflow-overview-section .workflow-snapshot strong {
  margin-bottom: 10px;
  color: #8c52ff;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-overview-section .workflow-snapshot span {
  color: #191919;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 460;
}

.workflow-heading {
  margin-bottom: 34px;
  text-align: left;
}

.workflow-heading h2 {
  color: #fff;
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.92;
  font-weight: 400;
}

.workflow-overview-section .tool-grid {
  gap: 18px;
}

.workflow-overview-section .tool-card {
  min-height: 250px;
  padding: 30px 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-top: 4px solid #ffc700;
  border-radius: 8px;
  color: #8c52ff;
  background: #fff;
  text-align: left;
}

.tool-initial {
  display: block;
  margin-bottom: 18px;
  color: #f7df45;
  font-size: 38px;
  line-height: 1;
  font-weight: 820;
}

.workflow-overview-section .tool-card strong {
  margin-bottom: 14px;
  color: #8c52ff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-transform: none;
}

.workflow-overview-section .tool-card p {
  color: #191919;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 360;
}

.tnf-detail-page .process-content .tool-grid {
  margin-top: 30px;
  gap: 18px;
}

.tnf-detail-page .process-content .tool-card {
  min-height: 250px;
  padding: 30px 22px 28px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-top: 4px solid #ffc700;
  border-radius: 8px;
  color: #8c52ff;
  background: #fff;
  text-align: left;
  box-shadow: 0 14px 32px rgba(140, 82, 255, 0.08);
}

.tnf-detail-page .process-content .tool-card strong {
  margin-bottom: 14px;
  color: #8c52ff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-transform: none;
}

.tnf-detail-page .process-content .tool-card p {
  color: #191919;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 360;
}

.balanced-project-page .project-hero {
  padding-top: 38px;
  padding-bottom: 36px;
}

.balanced-project-page .concert-project-hero {
  padding-top: 72px;
  padding-bottom: 74px;
}

.balanced-project-page .project-hero-inner,
.balanced-project-page .detail-inner {
  max-width: 1080px;
}

.balanced-project-page .project-hero-compact h1 {
  max-width: 960px;
  font-size: clamp(31px, 4.2vw, 52px);
}

.balanced-project-page .project-hero-compact p {
  max-width: 720px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.42;
}

.balanced-project-page .concert-project-hero p {
  max-width: 860px;
}

.balanced-project-page .eyebrow {
  color: #ffc700;
}

.balanced-project-page .detail-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.balanced-project-page .process-list {
  gap: 24px;
}

.balanced-project-page .process-item {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
}

.balanced-project-page .process-number {
  width: 50px;
  height: 34px;
  font-size: 12px;
}

.balanced-project-page .process-content {
  padding-bottom: 24px;
}

.balanced-project-page .process-content h2 {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.balanced-project-page .process-content p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.balanced-project-page .workflow-overview-section {
  padding-top: 62px;
  padding-bottom: 68px;
}

.balanced-project-page .workflow-overview-section .workflow-snapshot {
  align-items: stretch;
  margin-bottom: 44px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(255, 222, 89, 0.48);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.balanced-project-page .workflow-snapshot h2 {
  margin-bottom: 4px;
  font-size: clamp(27px, 3.2vw, 40px);
}

.balanced-project-page .workflow-overview-section .workflow-snapshot div {
  min-height: 104px;
  padding: 17px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid #ffde59;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.balanced-project-page .workflow-overview-section .workflow-snapshot strong {
  margin-bottom: 8px;
  color: #ffde59;
}

.balanced-project-page .workflow-overview-section .workflow-snapshot span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.balanced-project-page .workflow-heading {
  margin-bottom: 26px;
}

.balanced-project-page .workflow-heading h2 {
  font-size: clamp(27px, 3.4vw, 42px);
}

.balanced-project-page .workflow-overview-section .section-title {
  color: #fff;
  font-size: clamp(27px, 3.4vw, 42px);
}

.balanced-project-page .workflow-overview-section .section-heading {
  margin-bottom: 28px;
}

.balanced-project-page .workflow-overview-section .section-heading p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.balanced-project-page .workflow-overview-section .tool-card {
  min-height: 218px;
  padding: 24px 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  border-radius: 7px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 222, 89, 0.95) 0 3px, transparent 3px),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.balanced-project-page .tool-initial {
  margin-bottom: 14px;
  color: #ffde59;
  font-size: 32px;
}

.balanced-project-page .workflow-overview-section .tool-card strong {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
}

.balanced-project-page .workflow-overview-section .tool-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.balanced-project-page .workflow-overview-section .overview-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #ffde59;
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.balanced-project-page .workflow-overview-section .overview-card strong {
  color: #ffde59;
}

.balanced-project-page .workflow-overview-section .overview-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.tnf-detail-page .process-content .placeholder-media {
  max-width: 100%;
  margin-top: 24px;
  border: 8px solid #f5f2ff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(45, 16, 111, 0.1);
}

.tnf-detail-page .process-content .placeholder-media.wide {
  max-width: 100%;
}

.tnf-detail-page .placeholder-grid {
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
}

.tnf-detail-page .placeholder-grid .placeholder-media {
  margin-top: 24px;
}

.detail-section {
  padding: 74px 8%;
}

.detail-section.purple {
  color: #fff;
  background: #8c52ff;
}

.detail-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 44px;
}

.section-title {
  color: #8c52ff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.92;
}

.purple .section-title {
  color: #fff;
}

.section-heading p {
  max-width: 740px;
  margin-top: 18px;
  color: inherit;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 330;
}

.process-list {
  display: grid;
  gap: 30px;
}

.process-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.process-number {
  display: grid;
  width: 58px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #ffc700;
  font-size: 14px;
  font-weight: 800;
}

.process-content {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(140, 82, 255, 0.18);
}

.process-content h2 {
  margin-bottom: 12px;
  color: #8c52ff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.process-content p {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.placeholder-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(140, 82, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #eeeeee, #cecece);
}

.placeholder-media img,
.placeholder-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.placeholder-media.has-custom-video iframe {
  pointer-events: none;
}

.concert-stage-section {
  padding-top: 68px;
  padding-bottom: 78px;
  background:
    linear-gradient(180deg, rgba(140, 82, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    #fff;
}

.concert-stage-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.concert-stage-heading .section-title {
  font-size: clamp(28px, 3.8vw, 48px);
  white-space: nowrap;
}

.concert-stage-heading p {
  margin-right: auto;
  margin-left: auto;
}

.concert-split-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 100%;
  margin-top: 48px;
  margin-bottom: 22px;
}

.concert-split-columns > div {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 190px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 8px;
  border-top: 3px solid #8c52ff;
  background: #fff;
  text-align: center;
}

.concert-split-columns > .is-featured {
  border-color: rgba(140, 82, 255, 0.2);
  border-top-color: #ffde59;
  background: #fff;
  box-shadow: 0 18px 40px rgba(140, 82, 255, 0.07);
}

.concert-split-columns > .is-featured h3 {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #8c52ff;
}

.concert-split-columns > .is-featured h3::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1px;
  right: 1px;
  bottom: -7px;
  height: 7px;
  background: #ffc700;
}

.concert-split-columns h3 {
  margin-bottom: 18px;
  color: #8c52ff;
  font-size: 29px;
  line-height: 1;
  font-weight: 650;
}

.concert-role {
  margin-bottom: 24px;
  color: #191919;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 350;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-list {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 0;
  color: #8c52ff;
  list-style: none;
}

.concert-list li {
  padding: 0 8px;
  color: #8c52ff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.planty-split-columns > div {
  min-height: 236px;
}

.planty-split-columns .concert-role {
  min-height: 34px;
}

.planty-detail-panels span {
  max-width: 270px;
}

.logo-trace-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
}

.trace-card {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 26px 24px 22px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(140, 82, 255, 0.07);
  text-align: center;
}

.trace-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.vector-trace-card img {
  transform: scale(1.32);
}

.trace-card figcaption {
  color: #8c52ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trace-arrow {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid #ffc700;
  border-radius: 50%;
  color: #8c52ff;
  background: #fff;
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(140, 82, 255, 0.08);
}

.placeholder-grid.humber-storyboard-grid .placeholder-media {
  aspect-ratio: 0.82;
  background: #fff;
}

.placeholder-grid.humber-storyboard-grid .placeholder-media img {
  object-fit: contain;
  background: #fff;
}

.humber-final-animation {
  background: #111;
}

.humber-final-animation video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.personal-logo-comparison .trace-card img {
  object-fit: contain;
}

.personal-vector-card img {
  transform: scale(1.12);
}

.personal-vector-card figcaption {
  margin-top: 14px;
}

.personal-storyboard-media {
  background: #fff;
}

.placeholder-media.personal-storyboard-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.personal-final-animation {
  background: #111;
}

.personal-final-animation video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.personal-final-animation .custom-video-mute,
.humber-final-animation .custom-video-mute {
  position: absolute;
  z-index: 9;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(140, 82, 255, 0.18);
  color: #fff;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.personal-final-animation .custom-video-mute:hover,
.humber-final-animation .custom-video-mute:hover {
  color: #ffde59;
  background: rgba(140, 82, 255, 0.26);
  transform: translateY(-1px);
}

.vinyl-presentation-section {
  padding-bottom: 34px;
}

.vinyl-presentation {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 54px;
  align-items: stretch;
}

.vinyl-presentation-image {
  display: grid;
  align-items: center;
  margin: 0;
  background: #fff;
}

.vinyl-presentation-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  background: #fff;
}

.vinyl-design-map {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vinyl-design-map h2 {
  color: #8c52ff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.vinyl-design-map .eyebrow {
  margin-bottom: -4px;
}

.vinyl-design-map > p {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.vinyl-design-list {
  display: grid;
  gap: 14px;
}

.vinyl-design-list article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding-top: 14px;
  border-top: 3px solid #ffc700;
}

.vinyl-design-list strong {
  display: grid;
  width: 48px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #ffc700;
  font-size: 14px;
  font-weight: 800;
}

.vinyl-design-list span {
  color: #8c52ff;
  font-size: 24px;
  line-height: 1;
  font-weight: 760;
}

.vinyl-design-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 300;
}

.vinyl-mini-mockups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 18px;
  align-items: start;
  margin-top: 4px;
}

.vinyl-mini-mockups figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.vinyl-mini-mockups img {
  display: block;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(140, 82, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 12px 24px rgba(140, 82, 255, 0.07);
}

.vinyl-mini-mockups figcaption {
  color: #8c52ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vinyl-process-divider {
  display: none;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 58px;
  color: #8c52ff;
}

.vinyl-process-divider span {
  height: 2px;
  background: rgba(140, 82, 255, 0.32);
}

.vinyl-process-divider strong {
  color: #8c52ff;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.concert-detail-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
}

.concert-detail-panels article {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 126px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #8c52ff;
  box-shadow: 0 14px 32px rgba(140, 82, 255, 0.08);
  text-align: center;
}

.concert-detail-panels article::before {
  content: none;
}

.concert-detail-panels strong {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 13px;
  padding-top: 12px;
  border-top: 3px solid currentColor;
  color: #8c52ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concert-detail-panels span {
  display: block;
  max-width: 230px;
  color: #191919;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 360;
}

.project-overview-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 30px;
}

.project-overview-panels article {
  display: grid;
  align-content: start;
  min-height: 126px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(140, 82, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(45, 16, 111, 0.06);
}

.project-overview-panels strong {
  display: block;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 4px solid #ffc700;
  color: #8c52ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-overview-panels span {
  display: block;
  color: #191919;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 360;
}

.concert-stage-mockup {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) clamp(24px, 4vw, 52px) clamp(28px, 4vw, 44px);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 199, 0, 0.22), transparent 30%),
    linear-gradient(180deg, #151019 0%, #09070d 72%, #050407 100%);
  box-shadow: 0 28px 70px rgba(42, 20, 90, 0.18);
}

.concert-stage-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(140, 82, 255, 0.18), transparent 18%, transparent 82%, rgba(140, 82, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  pointer-events: none;
}

.stage-audio-toggle {
  position: relative;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.stage-audio-toggle:hover {
  color: #ffc700;
  transform: translateY(-1px);
}

.stage-audio-toggle.is-unmuted {
  color: #ffc700;
}

.stage-replay-button,
.stage-start-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 24px;
  border: 2px solid rgba(255, 199, 0, 0.9);
  border-radius: 999px;
  background: rgba(140, 82, 255, 0.86);
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.stage-start-button {
  z-index: 6;
  width: 92px;
  height: 92px;
  justify-content: center;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(140, 82, 255, 0.78);
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.stage-start-button i {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
  color: #ffc700;
  font-size: 30px;
  transform: translateX(3px);
}

.concert-stage-mockup.has-started .stage-start-button,
.concert-stage-mockup.is-ended .stage-start-button {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.stage-replay-button i {
  font-size: 17px;
}

.stage-replay-button:hover,
.stage-start-button:hover {
  background: #ffc700;
  color: #191919;
  transform: translate(-50%, -50%) scale(1);
}

.stage-start-button:hover i {
  color: #191919;
}

.concert-stage-mockup.is-ended .stage-replay-button {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.stage-end-cover {
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(140, 82, 255, 0.34), transparent 34%),
    rgba(5, 4, 7, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.concert-stage-mockup::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 12, 20, 0.18), rgba(5, 4, 7, 0.46) 64%),
    rgba(5, 4, 7, 0.18);
  opacity: 1;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.concert-stage-mockup.has-started::after,
.concert-stage-mockup.is-ended::after {
  opacity: 0;
}

.concert-stage-mockup.is-ended .stage-end-cover {
  opacity: 1;
  pointer-events: auto;
}

.stage-light {
  position: absolute;
  top: -18%;
  width: 32%;
  height: 86%;
  background: linear-gradient(180deg, rgba(255, 199, 0, 0.18), transparent 78%);
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
}

.stage-light-left {
  left: 4%;
  transform: rotate(18deg);
}

.stage-light-right {
  right: 4%;
  transform: rotate(-18deg);
}

.stage-screens {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(90px, 0.38fr) minmax(220px, 1fr) minmax(90px, 0.38fr);
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.stage-screen {
  position: relative;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.9);
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255, 199, 0, 0.4),
    0 18px 40px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(140, 82, 255, 0.28);
}

.concert-stage-mockup.is-loading .stage-screen::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(140, 82, 255, 0.24), transparent 46%),
    linear-gradient(180deg, rgba(21, 16, 25, 0.96), rgba(8, 6, 13, 0.98));
  pointer-events: none;
}

.concert-stage-mockup.is-loading .stage-screen::after {
  z-index: 5;
}

.concert-stage-mockup.is-loading .stage-screen iframe {
  opacity: 0;
}

.stage-screen iframe {
  transition: opacity 240ms ease;
}

.concert-stage-mockup.is-ended .main-screen::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(140, 82, 255, 0.42), transparent 42%),
    #08060d;
  pointer-events: auto;
}

.stage-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.stage-screen video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.stage-screen iframe {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: 122%;
  height: 122%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.side-screen iframe {
  width: 103%;
  height: 110%;
}

.main-screen {
  aspect-ratio: 1 / 1;
}

.side-screen {
  aspect-ratio: 384 / 1080;
}

.left-panel {
  transform: perspective(900px) rotateY(8deg);
  transform-origin: right center;
}

.right-panel {
  transform: perspective(900px) rotateY(-8deg);
  transform-origin: left center;
}

.stage-floor {
  position: relative;
  z-index: 1;
  width: min(860px, 88%);
  height: 96px;
  margin: clamp(16px, 2.5vw, 26px) auto 0;
  transform: perspective(700px) rotateX(58deg);
  transform-origin: center top;
}

.stage-floor::before,
.stage-floor::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.stage-floor::before {
  top: 0;
  width: 100%;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px 4px 0 0;
  background:
    radial-gradient(ellipse at center top, rgba(255, 199, 0, 0.12), transparent 42%),
    radial-gradient(ellipse at center, rgba(140, 82, 255, 0.32), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.38);
}

.stage-floor::after {
  bottom: 0;
  width: 92%;
  height: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(140, 82, 255, 0.18), rgba(5, 4, 7, 0.88), rgba(140, 82, 255, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 199, 0, 0.12),
    0 26px 38px rgba(0, 0, 0, 0.46);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
}

.stage-floor span {
  display: none;
}

.stage-playback {
  position: relative;
  z-index: 3;
  width: min(680px, 78%);
  margin: 4px auto 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
}

.stage-play-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.stage-play-toggle:hover {
  color: #ffc700;
  transform: translateY(-1px);
}

.stage-play-toggle i,
.stage-audio-toggle i {
  font-size: 19px;
}

.stage-progress {
  display: block;
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.stage-progress::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc700 var(--stage-progress, 0%), rgba(255, 255, 255, 0.22) var(--stage-progress, 0%));
}

.stage-progress::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.stage-progress::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: #ffc700;
}

.stage-progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5.5px;
  appearance: none;
  border: 2px solid #ffc700;
  border-radius: 50%;
  background: #8c52ff;
  box-shadow: 0 0 0 4px rgba(140, 82, 255, 0.24);
}

.stage-progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid #ffc700;
  border-radius: 50%;
  background: #8c52ff;
  box-shadow: 0 0 0 4px rgba(140, 82, 255, 0.24);
}

.custom-video-cover,
.has-custom-video::after {
  position: absolute;
  inset: 0;
  transition: opacity 220ms ease;
}

.custom-video-cover {
  z-index: 3;
  background: transparent;
  pointer-events: none;
}

.has-custom-video::after {
  content: "";
  z-index: 4;
  background: linear-gradient(180deg, rgba(20, 10, 40, 0.12), rgba(20, 10, 40, 0.38));
  pointer-events: none;
}

.has-custom-video:not(.is-playing)::after {
  opacity: 0;
}

.has-custom-video.is-playing .custom-video-cover,
.has-custom-video.is-playing::after {
  opacity: 0;
}

.has-custom-video.is-playing .custom-video-cover {
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.custom-video-play {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(140, 82, 255, 0.16);
  color: #fff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.custom-video-play span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 28px solid currentColor;
}

.custom-video-play:hover {
  color: #ffde59;
  border-color: rgba(255, 222, 89, 0.45);
  background: rgba(140, 82, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.05);
}

.has-custom-video.is-playing .custom-video-play,
.has-custom-video.is-playing.controls-idle .custom-video-play,
.has-custom-video.is-playing.controls-idle:hover .custom-video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.has-custom-video.is-paused .custom-video-play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.custom-video-controls {
  position: absolute;
  z-index: 8;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.custom-video-mini-toggle {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.25));
}

.custom-video-mini-toggle span {
  width: 13px;
  height: 15px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.has-custom-video.is-paused .custom-video-mini-toggle span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  border-right: 0;
}

.custom-video-mini-toggle:hover {
  color: #ffde59;
}

.custom-video-timeline {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-video-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.custom-video-timeline span {
  position: relative;
  display: block;
  width: 0%;
  height: 4px;
  border-radius: 999px;
  background: #ffde59;
}

.custom-video-timeline span::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #8c52ff;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.custom-video-time {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.has-custom-video.is-playing:hover .custom-video-controls,
.has-custom-video.is-paused .custom-video-controls,
.custom-video-timeline:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-custom-video.is-playing.controls-idle:hover .custom-video-controls {
  opacity: 0;
  transform: translateY(8px);
}

.placeholder-media img {
  object-fit: cover;
}

.placeholder-media.wide {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.tnf-detail-page .tnf-contain-media {
  height: auto;
  aspect-ratio: auto;
  background: #fff;
}

.tnf-detail-page .tnf-contain-media img {
  height: auto;
  object-fit: contain;
}

.tnf-detail-page .tnf-sketch-media {
  padding-bottom: 0;
  background: transparent;
}

.placeholder-media.tall {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.print-material-page .print-feature-grid {
  gap: 22px;
}

.print-material-page .print-presentation-image {
  background: #fff;
}

.print-material-page .print-presentation-image img,
.print-material-page .vinyl-choice-card img {
  object-fit: contain;
}

.print-material-page .print-contain-media,
.psa-page .psa-contain-media {
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 14px;
  aspect-ratio: auto;
  min-height: 0;
  background: #fff;
  box-shadow: 0 16px 34px rgba(140, 82, 255, 0.09);
}

.print-material-page .print-contain-media img,
.psa-page .psa-contain-media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.print-material-page .print-feature-grid .placeholder-media {
  aspect-ratio: auto;
}

.psa-page .psa-format-grid .placeholder-media {
  aspect-ratio: auto;
}

.psa-page .psa-artwork-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psa-page .psa-artwork-grid .placeholder-media {
  aspect-ratio: auto;
}

.psa-copy-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-top: 8px;
}

.psa-copy-list p {
  max-width: none;
  margin: 0;
}

.psa-copy-list strong {
  color: #8c52ff;
  font-weight: 800;
}

.psa-format-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.psa-format-list article {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(140, 82, 255, 0.08);
}

.psa-format-list strong {
  display: block;
  width: max-content;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 4px solid #ffc700;
  color: #8c52ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.psa-format-list span {
  display: block;
  color: #191919;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 520;
}

.psa-mockup-stack {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.psa-final-format-images {
  display: grid;
  gap: 26px;
  margin-top: 32px;
}

.psa-final-format-item {
  display: grid;
  gap: 12px;
  margin: 0;
}

.psa-final-format-item figcaption,
.psa-mockup-item figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8c52ff;
  font-size: 20px;
  line-height: 1;
  font-weight: 780;
}

.psa-mockup-item {
  display: grid;
  gap: 14px;
  margin: 0;
}

.psa-final-format-item figcaption::after,
.psa-mockup-item figcaption::after {
  content: "";
  flex: 1;
  height: 3px;
  background: #ffc700;
}

.psa-final-format-item figcaption span,
.psa-mockup-item figcaption span {
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: #8c52ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.psa-page .psa-final-format-item figcaption span,
.psa-page .psa-mockup-item figcaption span {
  display: inline;
  width: auto;
  height: auto;
  color: #8c52ff;
  background: transparent;
  font-size: 15px;
  font-weight: 850;
}

.book-cover-comparison {
  max-width: 980px;
}

.book-cover-comparison .trace-card img {
  height: 300px;
  object-fit: contain;
  background: #fff;
}

.contain-media img {
  object-fit: contain;
  background: #fff;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.placeholder-grid .placeholder-media {
  aspect-ratio: 1.48 / 1;
  min-height: 0;
}

.planty-sketch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.planty-sketch-grid .placeholder-media {
  aspect-ratio: 0.68;
  min-height: 0;
  background: #fff;
}

.planty-sketch-grid .placeholder-media img {
  height: 100%;
  object-fit: cover;
}

.overview-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.overview-card,
.tool-card {
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 8px;
  color: #8c52ff;
  background: #fff;
}

.overview-card strong,
.tool-card strong {
  display: block;
  margin-bottom: 10px;
  color: #8c52ff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.overview-card p,
.tool-card p {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

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

.feature-card {
  display: grid;
  gap: 22px;
}

.feature-card h2 {
  color: inherit;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.feature-card p {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.project-footer {
  padding: 40px 8% 54px;
  border-top: 1px solid rgba(140, 82, 255, 0.14);
  text-align: center;
}

.project-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 42px;
  padding: 8px 22px;
  border: 3px solid #8c52ff;
  border-radius: 999px;
  color: #8c52ff;
  font-size: 16px;
  font-weight: 750;
}

.project-footer a:hover {
  color: #fff;
  background: #8c52ff;
}

@media (max-width: 1023px) {
  .nav-portfolio-toggle::before {
    display: none;
  }

  .nav-portfolio-toggle::after {
    display: none;
  }

  .hamburger-lines {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .case-nav {
    top: 14px;
    left: 14px;
  }

  .nav-portfolio-links {
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: min(260px, calc(100vw - 28px));
    max-width: none;
    border-radius: 18px;
    transform: translateY(-6px);
  }

  .nav-portfolio-links::before {
    right: auto;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 12px;
  }

  .nav-portfolio-links a + a::before {
    top: 0;
    left: 13px;
    width: calc(100% - 26px);
    height: 1px;
    transform: none;
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    transform: translateY(0);
  }

  .detail-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-hero-inner,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .tool-grid,
  .workflow-snapshot,
  .psa-page .psa-artwork-grid,
  .psa-format-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concert-split-columns,
  .concert-detail-panels {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .logo-trace-comparison {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .trace-card {
    width: 100%;
  }

  .trace-arrow {
    transform: rotate(90deg);
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .concert-stage-mockup {
    padding: 34px 22px 28px;
  }

  .stage-screens {
    grid-template-columns: 0.42fr 1fr 0.42fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .case-nav {
    top: 12px;
    left: 12px;
  }

  .nav-home,
  .nav-portfolio-toggle {
    min-height: 42px;
  }

  .nav-home {
    width: 42px;
  }

  .nav-portfolio-toggle {
    padding: 0 15px 0 17px;
  }

  .nav-portfolio-toggle span,
  .nav-portfolio-links a {
    font-size: 11px;
  }

  .project-hero,
  .detail-section,
  .detail-nav,
  .project-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .overview-grid,
  .tool-grid,
  .placeholder-grid,
  .workflow-snapshot,
  .psa-format-list {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    padding: 22px;
  }

  .hero-meta-snapshot {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hero-meta-snapshot div {
    min-height: auto;
  }

  .concert-stage-section {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .concert-stage-heading {
    text-align: left;
  }

  .concert-stage-heading .section-title {
    font-size: clamp(23px, 8vw, 34px);
  }

  .concert-stage-heading p {
    margin-left: 0;
  }

  .stage-screens {
    grid-template-columns: minmax(54px, 0.36fr) minmax(130px, 1fr) minmax(54px, 0.36fr);
    gap: 9px;
    max-width: 100%;
  }

  .left-panel {
    transform: perspective(700px) rotateY(7deg);
  }

  .right-panel {
    transform: perspective(700px) rotateY(-7deg);
  }

  .stage-floor {
    width: 88%;
  }

  .tnf-detail-page .placeholder-grid {
    grid-template-columns: 1fr;
  }
}

.contact {
  padding: 80px 10%;
  background: #f7f5fb;
  color: #8c52ff;
  text-align: center;
}

.contact .section-title {
  margin-bottom: 118px;
  color: #8c52ff;
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 0.95;
  font-weight: 400;
}

.email-link {
  display: inline-block;
  margin-bottom: 70px;
  color: #191919;
  font-size: clamp(15px, 2.3vw, 25px);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.email-link:hover {
  color: #8c52ff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.social-links a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid #8c52ff;
  border-radius: 50%;
  color: #8c52ff;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.social-links i {
  font-size: 27px;
  line-height: 1;
}

.floating-contact {
  position: fixed;
  z-index: 19;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid #8c52ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #8c52ff;
  box-shadow: 0 18px 45px rgba(25, 25, 25, 0.14);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.floating-contact:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

@media (max-width: 560px) {
  .contact {
    padding-left: 24px;
    padding-right: 24px;
  }

  .email-link {
    max-width: none;
    font-size: clamp(18px, 4vw, 34px);
    line-height: 1;
    white-space: nowrap;
  }

  .floating-contact {
    right: 18px;
    bottom: 18px;
    min-height: 52px;
    padding: 0 24px;
  }
}


/* Final shared detail nav override */
.case-nav .nav-home,
.case-nav .nav-portfolio-toggle {
  min-height: 42px;
  border: 2px solid #8c52ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  color: #8c52ff;
}

.case-nav .nav-home {
  width: 42px;
}

.case-nav .nav-portfolio-toggle {
  padding: 0 15px 0 17px;
}

.case-nav .nav-portfolio-toggle span {
  color: #8c52ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.case-nav .nav-home:hover,
.case-nav .nav-portfolio:hover .nav-portfolio-toggle,
.case-nav .nav-portfolio:focus-within .nav-portfolio-toggle {
  background: #8c52ff;
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  transform: translateY(-2px);
}

/* Vinyl case final overrides */
.vinyl-design-map {
  align-content: center;
  gap: 20px;
}

.vinyl-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 4px;
}

.vinyl-choice-card {
  display: grid;
  grid-template-rows: auto 320px;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease;
}

.vinyl-choice-card:hover {
  transform: translateY(-3px);
}

.vinyl-choice-card h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #8c52ff;
  font-size: 19px;
  line-height: 1;
  font-weight: 760;
}

.vinyl-choice-card h3 span {
  display: grid;
  width: 38px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: #ffc700;
  font-size: 12px;
  font-weight: 850;
}

.vinyl-choice-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  transition: filter 180ms ease;
}

.vinyl-choice-card::after {
  content: "View section";
  width: max-content;
  max-width: 100%;
  margin-top: -4px;
  color: #8c52ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vinyl-choice-card:hover img {
  filter: drop-shadow(0 16px 22px rgba(140, 82, 255, 0.16));
}

.vinyl-mini-mockups img {
  object-fit: contain;
}

.vinyl-process-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 10px 0 4px;
  color: #8c52ff;
}

.vinyl-process-label span {
  height: 2px;
  background: rgba(140, 82, 255, 0.26);
}

.vinyl-process-label strong {
  color: #8c52ff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.placeholder-media.vinyl-presentation-image {
  height: auto;
}

.vinyl-art-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

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

.savannah-sketch-grid,
.vinyl-final-grid,
.vinyl-insert-grid,
.vinyl-placeholder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vinyl-website-grid {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.vinyl-website-process {
  grid-template-columns: minmax(0, 1fr);
}

.vinyl-website-process .process-number {
  margin-bottom: -2px;
}

.vinyl-website-process .process-content {
  width: 100%;
}

.vinyl-moodboard-grid {
  grid-template-columns: minmax(0, 1fr);
}

.vinyl-concept-grid {
  grid-template-columns: minmax(0, 1fr);
}

.vinyl-art-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.vinyl-moodboard-card {
  border: 1px solid rgba(140, 82, 255, 0.1);
  box-shadow: 0 18px 40px rgba(140, 82, 255, 0.09);
}

.vinyl-art-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 7px;
}

.vinyl-art-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 7px;
}

.vinyl-art-placeholder {
  display: grid;
  min-height: 560px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(140, 82, 255, 0.16);
  border-radius: 8px;
  background: #d9d9d9;
  color: #8c52ff;
}

.vinyl-art-placeholder span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vinyl-sketch-grid .vinyl-art-card,
.savannah-sketch-grid .vinyl-art-card {
  height: 640px;
}

.vinyl-final-grid .vinyl-art-card {
  height: 620px;
}

.vinyl-insert-grid .vinyl-art-card,
.vinyl-website-grid .vinyl-art-card {
  height: 620px;
}

.vinyl-placeholder-grid .vinyl-art-card {
  height: 620px;
}

.vinyl-website-grid .vinyl-art-card {
  height: auto;
}

.vinyl-website-grid .vinyl-art-card img {
  width: 100%;
  max-height: none;
}

.vinyl-website-browser {
  display: grid;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  justify-content: stretch;
  align-items: stretch;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(140, 82, 255, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(140, 82, 255, 0.08);
}

.browser-bar {
  display: grid;
  grid-template-columns: repeat(3, 7px) minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  padding: 5px 7px 7px;
  background: transparent;
}

.browser-bar > span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc700;
}

.browser-bar > span:nth-child(2) {
  background: rgba(140, 82, 255, 0.55);
}

.browser-bar > span:nth-child(3) {
  background: rgba(140, 82, 255, 0.28);
}

.browser-address {
  min-width: 0;
  margin-left: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(140, 82, 255, 0.06);
  color: rgba(25, 25, 25, 0.5);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.vinyl-website-video {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(140, 82, 255, 0.12);
  border-radius: 6px;
  background: #fff;
}

.vinyl-website-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.vinyl-tight-copy > p {
  margin-bottom: 12px;
}

.vinyl-final-grid .vinyl-art-card {
  overflow: hidden;
}

.vinyl-final-grid .vinyl-art-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 62%;
}

.vinyl-moodboard-grid .vinyl-art-card {
  height: 760px;
}

.vinyl-concept-grid .vinyl-art-card {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.vinyl-concept-grid .vinyl-art-card img {
  width: 100%;
  max-height: none;
}

.vinyl-process-video-grid {
  grid-template-columns: minmax(0, 1fr);
}

.vinyl-process-video-grid .vinyl-art-card {
  width: 100%;
  max-width: none;
  padding: 14px;
  justify-self: stretch;
  align-items: flex-start;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 38px rgba(140, 82, 255, 0.1);
}

.vinyl-process-video-grid .vinyl-art-card video {
  width: auto;
  max-width: none;
  height: 130%;
  flex: 0 0 auto;
  align-self: flex-start;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.vinyl-moodboard-grid .vinyl-art-card,
.vinyl-insert-grid .vinyl-art-card {
  max-width: none;
}

@media (max-width: 900px) {
  .vinyl-presentation {
    grid-template-columns: 1fr;
  }

  .vinyl-sketch-grid,
  .savannah-sketch-grid,
  .vinyl-final-grid,
  .vinyl-insert-grid,
  .vinyl-placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vinyl-placeholder-grid {
    gap: 12px;
  }

  .vinyl-placeholder-grid .vinyl-art-card {
    height: auto;
  }

  .vinyl-placeholder-grid .vinyl-art-card img {
    width: 100%;
    max-height: none;
  }

  .vinyl-website-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .vinyl-choice-grid {
    grid-template-columns: 1fr;
  }

  .vinyl-choice-card {
    grid-template-rows: none;
  }

  .vinyl-choice-card img {
    height: auto;
  }

  .vinyl-sketch-grid,
  .savannah-sketch-grid,
  .vinyl-final-grid,
  .vinyl-insert-grid,
  .vinyl-placeholder-grid,
  .vinyl-website-grid,
  .vinyl-concept-grid,
  .vinyl-moodboard-grid,
  .vinyl-process-video-grid {
    grid-template-columns: 1fr;
  }

  .vinyl-sketch-grid .vinyl-art-card,
  .savannah-sketch-grid .vinyl-art-card,
  .vinyl-final-grid .vinyl-art-card,
  .vinyl-insert-grid .vinyl-art-card,
  .vinyl-website-grid .vinyl-art-card,
  .vinyl-moodboard-grid .vinyl-art-card,
  .vinyl-concept-grid .vinyl-art-card,
  .vinyl-process-video-grid .vinyl-art-card {
    height: auto;
  }

  .vinyl-art-card img {
    width: 100%;
    max-height: none;
  }

  .vinyl-website-browser {
    width: 100%;
  }

  .vinyl-website-video {
    min-height: 0;
  }
}

/* Responsive polish pass */
@media (max-width: 900px) {
  .portfolio-menu-open {
    overflow: hidden;
  }

  .nav-portfolio-links {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    width: auto;
    max-width: none;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 92px 32px 42px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: none;
    backdrop-filter: blur(18px);
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-portfolio.is-open .nav-portfolio-toggle i {
    transform: rotate(90deg);
  }

  .nav-portfolio-links a {
    width: min(100%, 340px);
    min-height: 58px;
    border-width: 0 0 1px;
    border-color: rgba(140, 82, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #8c52ff;
    font-size: clamp(19px, 5vw, 30px);
    text-align: center;
  }

  .nav-portfolio-links a:last-child {
    border-bottom: 0;
  }

  .nav-portfolio-links a + a::before,
  .nav-portfolio-links::before,
  .nav-portfolio-links::after {
    display: none;
  }

  .project-hero-inner,
  .detail-section,
  .project-footer,
  .feature-grid,
  .process-list,
  .overview-grid,
  .tool-grid,
  .workflow-snapshot {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  .project-hero h1,
  .project-hero-compact h1 {
    font-size: clamp(44px, 8vw, 68px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .project-hero p,
  .project-copy p,
  .process-copy p,
  .feature-card p,
  .overview-card p,
  .tool-card p {
    font-size: clamp(16px, 2.2vw, 18px);
  }

  .placeholder-media,
  .feature-media,
  .process-media,
  .video-player-shell,
  .concert-stage-mockup {
    max-width: 100%;
  }

  .placeholder-media img,
  .feature-media img,
  .process-media img,
  .placeholder-media video,
  .process-media video {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .project-hero h1,
  .project-hero-compact h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.98;
  }

  .section-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .process-item,
  .feature-card,
  .overview-card,
  .tool-card,
  .concert-detail-panels article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .placeholder-grid,
  .feature-grid,
  .process-media,
  .placeholder-media {
    width: 100%;
  }

  .concert-stage-mockup {
    padding-left: 14px;
    padding-right: 14px;
  }

  .stage-playback {
    width: 100%;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 10px;
  }

  .stage-start-button {
    width: 70px;
    height: 70px;
  }

  .vinyl-choice-card h3 {
    font-size: 18px;
  }

  .email-link {
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 0;
    white-space: nowrap;
  }
}

/* Final mobile portfolio menu */
@media (max-width: 900px) {
  .portfolio-menu-open {
    overflow: hidden;
  }

  .nav-portfolio-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    width: auto;
    max-width: none;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 92px 32px 42px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: none;
    backdrop-filter: blur(18px);
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    z-index: 60;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-portfolio-links a {
    width: min(100%, 340px);
    min-height: 58px;
    border-width: 0 0 1px;
    border-color: rgba(140, 82, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #8c52ff;
    font-size: clamp(19px, 5vw, 30px);
    text-align: center;
  }

  .nav-portfolio-links a:last-child {
    border-bottom: 0;
  }

  .nav-portfolio-links::before,
  .nav-portfolio-links::after,
  .nav-portfolio-links a + a::before {
    display: none;
  }

  .case-nav {
    z-index: 70;
  }

  .nav-home,
  .nav-portfolio-toggle {
    position: relative;
    z-index: 72;
  }
}

/* Desktop nav restore */
.nav-portfolio-toggle::before,
.nav-portfolio-toggle::after {
  content: none;
}

.nav-label,
.nav-chevron {
  display: inline-flex;
}

.nav-label {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-chevron {
  color: inherit;
  font-size: 10.5px;
  transition: transform 180ms ease;
}

.hamburger-lines {
  display: none;
}

@media (max-width: 900px) {
  .nav-label,
  .nav-chevron {
    display: none;
  }

  .hamburger-lines {
    display: inline-flex;
  }
}

/* Desktop portfolio hover restore */
@media (min-width: 901px) {
  .nav-portfolio:hover .nav-portfolio-links,
  .nav-portfolio:focus-within .nav-portfolio-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-portfolio:hover .nav-chevron,
  .nav-portfolio:focus-within .nav-chevron {
    transform: rotate(90deg);
  }

  .nav-portfolio-links a[href="#contact"],
  .nav-portfolio-links a[href="../index.html#contact"] {
    display: none;
  }
}

/* Final project-page nav tuning */
.case-nav .nav-home,
.case-nav .nav-portfolio-toggle {
  border-width: 2px;
  border-color: #8c52ff;
}

@media (max-width: 900px) {
  .project-hero,
  .project-hero-compact,
  .balanced-project-page .project-hero,
  .balanced-project-page .concert-project-hero {
    padding-top: 112px;
  }

  .case-nav .nav-home,
  .case-nav .nav-portfolio-toggle {
    border-width: 2px;
  }
}

@media (max-width: 560px) {
  .project-hero,
  .project-hero-compact,
  .balanced-project-page .project-hero,
  .balanced-project-page .concert-project-hero {
    padding-top: 104px;
  }
}

/* Final mobile/tablet case navigation */
@media (max-width: 900px) {
  .case-nav .nav-home {
    display: none;
  }

  .case-nav {
    left: 14px;
    gap: 0;
  }

  .case-nav .nav-portfolio-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
  }

  .case-nav .nav-label,
  .case-nav .nav-chevron,
  .case-nav .nav-portfolio-toggle > i {
    display: none !important;
  }

  .case-nav .hamburger-lines {
    display: inline-flex !important;
    width: 18px;
    height: 14px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .case-nav .hamburger-lines span {
    display: block !important;
    width: 100%;
    height: 2px;
    padding: 0;
    border-radius: 999px;
    background: currentColor !important;
    font-size: 0;
    line-height: 0;
  }

  .nav-portfolio:not(.is-open) .nav-portfolio-links {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible;
  }

  .process-item {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .process-number {
    width: 58px;
    height: 38px;
    justify-self: center;
    margin: 0 auto;
    color: #fff;
    background: #ffc700;
  }

  .process-content {
    width: 100%;
    text-align: center;
  }

  .process-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .process-content .placeholder-grid,
  .process-content .feature-grid,
  .process-content .tool-grid,
  .process-content .overview-grid,
  .process-content .vinyl-art-grid {
    justify-content: center;
  }
}
