:root {
  --ink: #08090b;
  --paper: #f7f8fb;
  --paper-2: #eef1f6;
  --chalk: #ffffff;
  --muted: rgba(8, 9, 11, 0.58);
  --line: rgba(8, 9, 11, 0.11);
  --line-strong: rgba(8, 9, 11, 0.24);
  --yellow: #d9ff2f;
  --red: #ff5a48;
  --cyan: #18d3c5;
  --green: #31c48d;
  --steel: #9aa4b2;
  --shadow: 0 28px 90px rgba(8, 9, 11, 0.15);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 32%, #ffffff 100%);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.08;
  background-image: radial-gradient(rgba(8, 9, 11, 0.16) 0.45px, transparent 0.45px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 14px;
  left: clamp(12px, 3vw, 34px);
  right: clamp(12px, 3vw, 34px);
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 7px 9px 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(26px) saturate(170%);
  box-shadow: 0 14px 44px rgba(8, 9, 11, 0.1);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.brand img {
  width: 106px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(8, 9, 11, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--ink);
  background: rgba(8, 9, 11, 0.06);
}

.desktop-nav .nav-cta {
  color: #08090b;
  background: #d9ff2f;
  box-shadow: 0 10px 24px rgba(217, 255, 47, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link,
.menu-toggle,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.language-toggle {
  font-size: 12px;
  font-weight: 900;
}

.icon-link:hover,
.menu-toggle:hover,
.language-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--chalk);
}

.icon-link svg,
.menu-toggle svg,
.btn svg,
.tab svg,
.booking-tab svg,
.service-grid svg,
.product-card svg,
.panel-topline svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 88px;
  left: 14px;
  right: 14px;
  z-index: 850;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(20px, 4vw, 54px);
  padding: 132px clamp(18px, 5vw, 76px) 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 251, 0.94) 0%, rgba(247, 248, 251, 0.62) 42%, rgba(247, 248, 251, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.12) 0%, rgba(8, 9, 11, 0) 42%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 9, 11, 0.28), transparent);
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  gap: 10px;
  padding: 84px 16px 18px 40%;
  opacity: 1;
}

.hero-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  filter: saturate(1.18) contrast(1.06);
  box-shadow: 0 34px 110px rgba(8, 9, 11, 0.24);
}

.hero-shot-a {
  grid-row: span 2;
  border-radius: 32px;
}

.hero-shot-b,
.hero-shot-c {
  min-height: 220px;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.tab-panel span,
.panel-topline,
.mock-header,
.site-footer,
.form-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(8, 9, 11, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1,
.split-heading h2,
.band-copy h2,
.tech-copy h2,
.release-copy h2,
.final-cta h2 {
  margin: 16px 0 0;
  max-width: 940px;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 {
  max-width: 1100px;
}

.hero p,
.split-heading p,
.band-copy p,
.tech-copy p,
.release-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn.primary {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
  box-shadow: 0 16px 38px rgba(8, 9, 11, 0.2);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.hero-panel {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(8, 9, 11, 0.7);
  backdrop-filter: blur(24px) saturate(160%);
  color: var(--chalk);
  box-shadow: var(--shadow);
}

.panel-topline {
  width: 100%;
  justify-content: space-between;
  color: rgba(255, 250, 240, 0.64);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.signal-grid div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.signal-grid div:nth-child(1) { border-color: rgba(24, 211, 197, 0.34); }
.signal-grid div:nth-child(2) { border-color: rgba(217, 255, 47, 0.34); }
.signal-grid div:nth-child(3) { border-color: rgba(255, 90, 72, 0.34); }
.signal-grid div:nth-child(4) { border-color: rgba(154, 164, 178, 0.36); }

.quick-dock {
  position: sticky;
  top: 88px;
  z-index: 700;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(920px, calc(100% - 32px));
  margin: -34px auto 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(170%);
  box-shadow: 0 18px 55px rgba(8, 9, 11, 0.12);
}

.quick-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  color: rgba(8, 9, 11, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quick-dock a:hover {
  color: var(--ink);
  background: rgba(8, 9, 11, 0.07);
  transform: translateY(-1px);
}

.portal-dock {
  grid-template-columns: minmax(240px, 1fr);
  width: min(430px, calc(100% - 32px));
  margin-bottom: 28px;
}

.portal-dock a {
  color: #ffffff;
  background: #08090b;
  text-transform: none;
}

.portal-dock a:hover {
  color: #08090b;
  background: #d9ff2f;
}

.quick-dock svg {
  width: 17px;
  height: 17px;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  font-size: 18px;
}

.signal-grid span {
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.ticker {
  border-block: 1px solid rgba(8, 9, 11, 0.08);
  background: var(--ink);
  color: var(--chalk);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 6px 18px 6px 8px;
  border: 1px solid rgba(8, 9, 11, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 28px rgba(8, 9, 11, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  white-space: nowrap;
}

.ticker-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  padding: 4px;
  border-radius: 999px;
  background: #ffffff;
}

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

.section {
  padding: clamp(116px, 13vw, 168px) clamp(18px, 5vw, 76px) clamp(76px, 10vw, 138px);
}

.intro,
.music-section,
.booking-section {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.66fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-top: 16px;
}

.split-heading h2,
.band-copy h2,
.tech-copy h2,
.release-copy h2,
.final-cta h2 {
  font-size: clamp(36px, 5vw, 78px);
  line-height: 0.94;
}

.ecosystem-tabs,
.booking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}

.tab,
.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tab.active,
.booking-tab.active {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
}

.tab-stage {
  position: relative;
  min-height: 318px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 241, 246, 0.88));
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(8, 9, 11, 0.08);
}

.tab-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--cyan), var(--green));
}

.tab-panel {
  display: none;
  padding: clamp(24px, 5vw, 56px);
}

.tab-panel.active {
  display: block;
  animation: panelIn 0.32s ease both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel h3 {
  max-width: 980px;
  margin: 16px 0 0;
  font-size: clamp(34px, 5.3vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
}

.tab-panel p {
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.48;
}

.feature-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  min-height: 780px;
  gap: 0;
  padding: 0;
  background: var(--ink);
  color: var(--chalk);
}

.band-media {
  min-height: 620px;
}

.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.band-copy .section-kicker,
.band-copy p {
  color: rgba(255, 250, 240, 0.68);
}

.service-grid,
.product-grid,
.music-points {
  display: grid;
  gap: 10px;
}

.service-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

.service-grid div,
.product-card,
.music-points article {
  padding: 20px;
  border: 1px solid rgba(16, 16, 15, 0.13);
  border-radius: 18px;
  background: var(--chalk);
}

.band-copy .service-grid div {
  border-color: rgba(255, 250, 240, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.service-grid strong,
.service-grid span,
.product-card h3,
.product-card p,
.music-points h3,
.music-points p {
  display: block;
}

.service-grid strong,
.product-card h3,
.music-points h3 {
  margin-top: 18px;
  font-size: 18px;
}

.service-grid span,
.product-card p,
.music-points p {
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.dashboard-mock {
  min-height: 560px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.96), rgba(22, 25, 31, 0.96));
  color: var(--chalk);
  box-shadow: var(--shadow);
}

.mock-header {
  width: 100%;
  justify-content: space-between;
  color: rgba(255, 250, 240, 0.62);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.metric-row span {
  color: rgba(255, 250, 240, 0.56);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.metric-row strong {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.9;
}

.wave-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 154px;
  margin-top: 36px;
}

.wave-bars b {
  flex: 1;
  min-width: 8px;
  border-radius: 5px 5px 0 0;
  background: var(--yellow);
  animation: wave 1.4s ease-in-out infinite alternate;
}

.wave-bars b:nth-child(2n) { background: var(--cyan); animation-delay: 0.1s; }
.wave-bars b:nth-child(3n) { background: var(--red); animation-delay: 0.2s; }
.wave-bars b:nth-child(4n) { animation-delay: 0.32s; }

@keyframes wave {
  from { height: 20%; }
  to { height: 100%; }
}

.music-points article {
  background: var(--chalk);
}

.music-points article span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.music-points p,
.product-card p {
  color: var(--muted);
}

.tech-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 42px;
  background: linear-gradient(180deg, var(--paper-2), #ffffff);
}

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

.product-card {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16, 16, 15, 0.1);
}

.product-card.is-upcoming {
  position: relative;
  opacity: 0.74;
}

.product-card.is-upcoming::after {
  content: "Upcoming";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border: 1px solid rgba(217, 255, 47, 0.55);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.72);
  color: #d9ff2f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="tr"] .product-card.is-upcoming::after {
  content: "Yakinda";
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tech-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-product h3,
.tech-product p {
  margin: 0;
}

.tech-product a,
.action-article a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: #d9ff2f;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  width: fit-content;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.wordmark span {
  color: #d9ff2f;
}

.product-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.product-logo-wide {
  width: 132px;
  height: 58px;
  padding: 10px 14px;
}

.mark-eats span {
  color: #ff9b54;
}

.mark-komsu {
  color: #75df9b;
}

.mark-network span {
  color: #18d3c5;
}

.action-article {
  border-color: rgba(217, 255, 47, 0.25) !important;
}

.booking-tabs {
  margin-top: 24px;
}

.calendar-shell {
  height: min(780px, 82vh);
  min-height: 540px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--chalk);
  box-shadow: var(--shadow);
}

.calendar-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.release-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 36px;
  background: linear-gradient(135deg, #08090b, #171a20 58%, #08090b);
  color: var(--chalk);
}

.release-copy .section-kicker,
.release-copy p {
  color: rgba(255, 250, 240, 0.68);
}

.release-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: start;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.release-form label,
.release-form .full {
  grid-column: span 1;
}

.release-form .full {
  grid-column: 1 / -1;
}

.release-form span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.release-form input,
.release-form select,
.release-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 14px;
  background: rgba(16, 16, 15, 0.42);
  color: var(--chalk);
  padding: 13px 12px;
  outline: none;
}

.release-form input:focus,
.release-form select:focus,
.release-form textarea:focus {
  border-color: var(--yellow);
}

.form-status {
  min-height: 18px;
  color: var(--yellow);
}

.final-cta {
  min-height: 82vh;
  display: block;
  background:
    linear-gradient(120deg, rgba(217, 255, 47, 0.96), rgba(24, 211, 197, 0.72) 54%, rgba(255, 255, 255, 0.95));
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.final-logo {
  width: clamp(140px, 18vw, 220px);
}

.final-cta h2 {
  max-width: 1120px;
}

.contact-address {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(8, 9, 11, 0.76);
  font-style: normal;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.46;
}

.contact-address span {
  display: block;
  margin-bottom: 8px;
  color: #08090b;
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.map-shell {
  min-height: 440px;
  border: 1px solid rgba(8, 9, 11, 0.18);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 80px rgba(8, 9, 11, 0.18);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

body {
  background: #08090b;
}

body[data-scene="home"] .site-header,
body[data-scene="creative"] .site-header,
body[data-scene="music"] .site-header,
body[data-scene="tech"] .site-header,
body[data-scene="release"] .site-header {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 11, 0.54);
  color: #ffffff;
}

body[data-scene="home"] .brand img,
body[data-scene="creative"] .brand img,
body[data-scene="music"] .brand img,
body[data-scene="tech"] .brand img,
body[data-scene="release"] .brand img {
  filter: invert(1) brightness(1.5);
}

body[data-scene="home"] .desktop-nav a,
body[data-scene="creative"] .desktop-nav a,
body[data-scene="music"] .desktop-nav a,
body[data-scene="tech"] .desktop-nav a,
body[data-scene="release"] .desktop-nav a {
  color: rgba(255, 255, 255, 0.68);
}

body[data-scene="home"] .desktop-nav a:hover,
body[data-scene="creative"] .desktop-nav a:hover,
body[data-scene="music"] .desktop-nav a:hover,
body[data-scene="tech"] .desktop-nav a:hover,
body[data-scene="release"] .desktop-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

body[data-scene="home"] .desktop-nav .nav-cta,
body[data-scene="creative"] .desktop-nav .nav-cta,
body[data-scene="music"] .desktop-nav .nav-cta,
body[data-scene="tech"] .desktop-nav .nav-cta,
body[data-scene="release"] .desktop-nav .nav-cta {
  color: #08090b;
  background: #d9ff2f;
}

body[data-scene="home"] .icon-link,
body[data-scene="home"] .menu-toggle,
body[data-scene="home"] .language-toggle,
body[data-scene="creative"] .icon-link,
body[data-scene="creative"] .menu-toggle,
body[data-scene="creative"] .language-toggle,
body[data-scene="music"] .icon-link,
body[data-scene="music"] .menu-toggle,
body[data-scene="music"] .language-toggle,
body[data-scene="tech"] .icon-link,
body[data-scene="tech"] .menu-toggle,
body[data-scene="tech"] .language-toggle,
body[data-scene="release"] .icon-link,
body[data-scene="release"] .menu-toggle,
body[data-scene="release"] .language-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.universe {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.universe::before,
.universe::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.scene-code {
  position: absolute;
  top: clamp(92px, 13vh, 132px);
  right: clamp(18px, 5vw, 76px);
  z-index: 3;
  writing-mode: vertical-rl;
  color: currentColor;
  opacity: 0.42;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hero.universe-home {
  background: #07080c;
  color: #ffffff;
}

.hero.universe-home::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.92) 0%, rgba(7, 8, 12, 0.6) 42%, rgba(7, 8, 12, 0.18) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 92px);
}

.hero.universe-home::after {
  inset: auto clamp(18px, 5vw, 76px) 22px;
  height: 42vh;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0 26%, rgba(217, 255, 47, 0.88) 26% 27%, transparent 27% 100%),
    linear-gradient(68deg, transparent 0 48%, rgba(24, 211, 197, 0.78) 48% 49%, transparent 49% 100%),
    linear-gradient(154deg, transparent 0 63%, rgba(255, 90, 72, 0.68) 63% 64%, transparent 64% 100%);
  opacity: 0.66;
}

.hero.universe-home .eyebrow,
.hero.universe-home .hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.hero.universe-home .btn.primary,
.universe-release .btn.primary {
  border-color: #d9ff2f;
  background: #d9ff2f;
  color: #08090b;
  box-shadow: 0 18px 50px rgba(217, 255, 47, 0.18);
}

.hero.universe-home .btn.secondary,
.universe-release .btn.secondary,
.universe-creative .btn.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero.universe-home .hero-shot {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 0;
  filter: saturate(1.28) contrast(1.16) brightness(0.88);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.hero.universe-home .hero-shot-a {
  clip-path: polygon(14% 0, 100% 6%, 86% 100%, 0 94%);
}

.quick-dock {
  color: #08090b;
}

.ticker {
  background: #d9ff2f;
  color: #08090b;
}

.universe-map {
  color: #111111;
  background: #f3efe4;
}

.universe-map::before {
  background:
    linear-gradient(135deg, rgba(255, 90, 72, 0.2), transparent 34%),
    repeating-linear-gradient(120deg, rgba(8, 9, 11, 0.08) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #f8f4ea, #e8e2d3);
}

.universe-map .tab-stage {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px);
}

.universe-creative {
  grid-template-columns: minmax(42%, 0.9fr) minmax(0, 1fr);
  color: #fff7e8;
  background: #180b08;
}

.universe-creative::before {
  background:
    linear-gradient(100deg, rgba(24, 11, 8, 0.2), rgba(24, 11, 8, 0.95) 52%),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.07) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #ff5a48, #180b08 48%, #08090b);
}

.universe-creative .band-media {
  transform: rotate(-2.4deg) scale(1.08);
  transform-origin: left center;
  margin: 38px 0 38px -52px;
  min-height: 700px;
  border: 1px solid rgba(255, 247, 232, 0.16);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
}

.universe-creative .band-media img {
  filter: saturate(1.28) contrast(1.16) brightness(0.82);
}

.universe-creative .service-grid div {
  border-color: rgba(255, 247, 232, 0.16);
  background: rgba(255, 247, 232, 0.08);
}

.universe-creative .service-grid span {
  color: rgba(255, 247, 232, 0.66);
}

.universe-music {
  color: #eafffb;
  background: #031816;
}

.universe-music::before {
  background:
    linear-gradient(180deg, rgba(3, 24, 22, 0.78), rgba(3, 24, 22, 0.98)),
    repeating-linear-gradient(90deg, rgba(24, 211, 197, 0.18) 0 2px, transparent 2px 18px),
    linear-gradient(90deg, #031816, #06312d 48%, #08090b);
}

.universe-music::after {
  inset: 16% 0 auto;
  height: 46%;
  background: repeating-linear-gradient(0deg, transparent 0 18px, rgba(217, 255, 47, 0.12) 18px 20px);
  transform: skewY(-8deg);
  opacity: 0.7;
}

.universe-music .section-kicker,
.universe-music .split-heading p,
.universe-music .mock-header {
  color: rgba(234, 255, 251, 0.68);
}

.universe-music .music-points article {
  border-color: rgba(234, 255, 251, 0.14);
  background: rgba(234, 255, 251, 0.08);
  color: #eafffb;
  backdrop-filter: blur(18px);
}

.universe-music .music-points p {
  color: rgba(234, 255, 251, 0.62);
}

.universe-music .dashboard-mock {
  border-color: rgba(217, 255, 47, 0.24);
  background: rgba(3, 24, 22, 0.78);
  backdrop-filter: blur(18px);
}

.universe-tech {
  color: #eff2ff;
  background: #0b1020;
}

.universe-tech::before {
  background:
    linear-gradient(90deg, rgba(11, 16, 32, 0.94), rgba(11, 16, 32, 0.68)),
    repeating-linear-gradient(0deg, rgba(154, 164, 178, 0.18) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(154, 164, 178, 0.12) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #0b1020, #1c2140);
}

.universe-tech::after {
  inset: 10% 8% 10% auto;
  width: min(520px, 42vw);
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(24, 211, 197, 0.55) 34% 35%, transparent 35% 100%),
    linear-gradient(0deg, transparent 0 56%, rgba(217, 255, 47, 0.5) 56% 57%, transparent 57% 100%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 20px);
  opacity: 0.78;
}

.universe-tech .section-kicker,
.universe-tech p {
  color: rgba(239, 242, 255, 0.68);
}

.universe-tech .product-card {
  border-color: rgba(239, 242, 255, 0.14);
  background: rgba(239, 242, 255, 0.08);
  color: #eff2ff;
}

.universe-tech .product-card p {
  color: rgba(239, 242, 255, 0.62);
}

.universe-booking {
  color: #111111;
  background: #f8f8f4;
}

.universe-booking::before {
  background:
    linear-gradient(120deg, rgba(217, 255, 47, 0.52), transparent 38%),
    repeating-linear-gradient(90deg, rgba(8, 9, 11, 0.06) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, #ffffff, #eef1f6);
}

.universe-booking .calendar-shell {
  transform: none;
  border-color: rgba(8, 9, 11, 0.16);
}

.universe-release {
  color: #ffffff;
  background: #090909;
}

.universe-release::before {
  background:
    linear-gradient(135deg, rgba(255, 90, 72, 0.42), transparent 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #090909, #1d1210 58%, #08090b);
}

.universe-release .release-form {
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.universe-contact {
  color: #08090b;
  background: #d9ff2f;
}

.universe-contact::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent 42%),
    repeating-linear-gradient(120deg, rgba(8, 9, 11, 0.1) 0 1px, transparent 1px 26px),
    linear-gradient(120deg, #d9ff2f, #18d3c5 58%, #ffffff);
}

.universe-contact .final-logo,
.universe-contact h2,
.universe-contact .final-actions,
.universe-contact .contact-address,
.universe-contact .map-shell {
  position: relative;
  z-index: 2;
}

.universe .split-heading,
.universe .ecosystem-tabs,
.universe .tab-stage,
.universe .music-layout,
.universe .product-grid,
.universe .booking-tabs,
.universe .calendar-shell,
.universe .release-form,
.universe .band-copy,
.universe .section-kicker {
  position: relative;
  z-index: 2;
}

.universe-creative .band-copy,
.universe-release .release-copy,
.universe-tech .tech-copy {
  position: relative;
  z-index: 3;
}

.universe-tech .tech-copy h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.96;
}

.universe-tech .tech-copy h2 em {
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-media {
    padding: 94px 14px 14px;
    grid-template-columns: 1fr 0.8fr;
    opacity: 0.38;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(247, 248, 251, 0.72) 0%, rgba(247, 248, 251, 0.98) 72%);
  }

  .hero.universe-home::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 12, 0.7) 0%, rgba(7, 8, 12, 0.96) 72%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 64px);
  }

  .split-heading,
  .feature-band,
  .music-layout,
  .tech-section,
  .release-section {
    grid-template-columns: 1fr;
  }

  .feature-band {
    min-height: 0;
  }

  .band-media {
    min-height: 380px;
  }

  .universe-creative .band-media {
    min-height: 420px;
    margin: 0;
    transform: none;
  }

  .scene-code {
    top: 92px;
    right: 14px;
    opacity: 0.3;
  }

  .quick-dock {
    position: relative;
    top: auto;
    grid-template-columns: repeat(5, minmax(74px, 1fr));
    overflow-x: auto;
    justify-content: start;
    width: calc(100% - 24px);
    margin-top: -24px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .quick-dock::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
  }

  .brand img {
    width: 104px;
  }

  .icon-link,
  .menu-toggle,
  .language-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 92svh;
    padding: 108px 16px 28px;
  }

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

  .hero-shot-b,
  .hero-shot-c {
    display: none;
  }

  .hero h1,
  .split-heading h2,
  .band-copy h2,
  .tech-copy h2,
  .release-copy h2,
  .final-cta h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .hero p,
  .split-heading p,
  .band-copy p,
  .tech-copy p,
  .release-copy p {
    font-size: 16px;
  }

  .hero-panel {
    display: none;
  }

  .quick-dock {
    grid-template-columns: repeat(5, 92px);
    padding: 8px;
  }

  .quick-dock a {
    flex-direction: column;
    gap: 5px;
    min-height: 58px;
    font-size: 10px;
  }

  .section {
    padding: 68px 16px;
  }

  .universe {
    min-height: auto;
  }

  .scene-code {
    position: relative;
    top: auto;
    right: auto;
    writing-mode: horizontal-tb;
    margin-bottom: 18px;
  }

  .hero .scene-code {
    position: absolute;
    top: 88px;
    left: 16px;
    right: auto;
    margin: 0;
  }

  .tab-stage {
    min-height: 410px;
  }

  .tab-panel h3 {
    font-size: 36px;
  }

  .service-grid,
  .release-form {
    grid-template-columns: 1fr;
  }

  .release-form label {
    grid-column: 1 / -1;
  }

  .calendar-shell {
    min-height: 600px;
    height: 72vh;
  }

  .site-footer,
  .final-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 360px;
  }
}

.detail-body {
  background: #08090b;
  color: #ffffff;
}

.detail-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 90px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 90px),
    #08090b;
}

.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 5vw, 76px);
}

.detail-nav img {
  width: 116px;
  filter: invert(1) brightness(1.45);
}

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

.detail-nav a:not(.brand) {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.detail-hero,
.detail-section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 76px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  min-height: 72svh;
}

.detail-hero h1,
.detail-section h2 {
  max-width: 980px;
  margin: 14px 0 0;
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.detail-hero p,
.detail-section p,
.detail-card p,
.detail-list li {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.detail-kicker {
  color: #d9ff2f;
  font-size: 12px;
  font-weight: 950;
  text-transform: none;
}

.detail-visual {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.07);
  overflow: hidden;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
}

.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(1.2) contrast(1.1) brightness(0.82);
}

.detail-visual .product-deep-grid {
  grid-template-columns: 1fr !important;
}

.detail-visual .product-deep-card {
  min-height: 150px;
}

.detail-grid,
.product-deep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.detail-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card,
.product-deep-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.detail-card h3,
.product-deep-card h3 {
  margin: 18px 0 0;
  font-size: 22px;
}

.product-deep-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.product-deep-card a {
  width: fit-content;
  margin-top: auto;
  color: #d9ff2f;
  font-size: 12px;
  font-weight: 950;
  text-transform: none;
}

.detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.detail-list li {
  padding: 18px 20px;
  border-left: 3px solid #d9ff2f;
  background: rgba(255, 255, 255, 0.06);
}

.detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.social-route {
  max-width: 720px;
  margin-top: 20px;
  color: #d9ff2f !important;
  font-weight: 900;
}

.social-primary {
  box-shadow: 0 18px 52px rgba(217, 255, 47, 0.2);
}

.social-gateway {
  margin: 0 clamp(18px, 5vw, 76px) clamp(42px, 6vw, 84px);
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(217, 255, 47, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(217, 255, 47, 0.18), rgba(255, 255, 255, 0.06) 52%, rgba(24, 211, 197, 0.14)),
    rgba(255, 255, 255, 0.05);
}

.social-gateway h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.05;
}

.social-domain-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 28px;
  color: #d9ff2f;
  font-size: clamp(28px, 5vw, 68px);
  font-weight: 950;
  line-height: 0.95;
  word-break: break-word;
}

.social-gateway-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.social-gateway-actions .social-domain-link {
  margin-inline: auto;
}

.social-mail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  word-break: break-word;
}

.social-mail-link svg {
  flex: 0 0 auto;
}

.social-domain-link svg {
  flex: 0 0 auto;
  width: clamp(28px, 4vw, 48px);
  height: clamp(28px, 4vw, 48px);
}

.detail-page.tech-detail {
  background:
    linear-gradient(135deg, rgba(24, 211, 197, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 84px),
    #0b1020;
}

.detail-page.ink-detail {
  background:
    linear-gradient(135deg, rgba(255, 90, 72, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 84px),
    #120a0a;
}

.compact-heading {
  align-items: start;
}

.instagram-shell {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.instagram-shell iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

@media (max-width: 1180px) {
  .detail-grid,
  .product-deep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .detail-hero,
  .detail-grid,
  .detail-grid.three,
  .product-deep-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero h1 {
    line-height: 1.05;
  }

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

/* --- Upcoming product badge (Technology page) --- */
.product-deep-card.is-upcoming {
  position: relative;
  opacity: 0.78;
}

.product-deep-card.is-upcoming::after {
  content: "Upcoming";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border: 1px solid rgba(217, 255, 47, 0.55);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.7);
  color: #d9ff2f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="tr"] .product-deep-card.is-upcoming::after {
  content: "Yakinda";
}

/* --- Tattoo gallery (Ink page) --- */
.ink-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.ink-gallery figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.04);
}

.ink-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ink-gallery figure:hover img {
  transform: scale(1.04);
}

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

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

@media (max-width: 980px) {
  .portal-dock {
    grid-template-columns: minmax(240px, 1fr);
    width: min(430px, calc(100% - 24px));
    overflow: visible;
  }
}

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

  .portal-dock a {
    flex-direction: row;
    min-height: 52px;
    font-size: 11px;
  }
}

/* Compact ecosystem refresh */
body.compact-site {
  min-height: 100vh;
  background: #f5f3ee;
  color: #101114;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.compact-site main {
  overflow: hidden;
}

.compact-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  min-height: 58px;
  margin: 12px auto 0;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 20px 70px rgba(16, 17, 20, 0.09);
}

.compact-brand img {
  width: 112px;
  height: auto;
}

.compact-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.compact-nav a,
.compact-mail,
.mail-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(16, 17, 20, 0.68);
  font-size: 12px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.compact-nav a:hover,
.compact-mail:hover,
.mail-pill:hover {
  color: #101114;
  background: rgba(16, 17, 20, 0.07);
  transform: translateY(-1px);
}

.compact-mail {
  border: 1px solid rgba(16, 17, 20, 0.12);
  background: #101114;
  color: #ffffff;
}

.compact-mail:hover {
  color: #101114;
  background: #d9ff2f;
}

.compact-mail svg,
.department-actions svg,
.work-grid svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.compact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(40px, 7vw, 84px);
}

.compact-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(16, 17, 20, 0.62);
  font-size: 11px;
  font-weight: 900;
}

.compact-hero h1,
.department-hero h1,
.compact-contact h2,
.work-section h2 {
  margin: 18px 0 0;
  max-width: 920px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

.compact-hero p,
.department-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(16, 17, 20, 0.64);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}

.compact-hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 460px;
}

.compact-hero-media img,
.department-media img,
.compact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-hero-media img {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 17, 20, 0.16);
}

.compact-hero-media img:first-child {
  grid-row: span 2;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: clamp(60px, 8vw, 108px);
}

.department-card {
  display: grid;
  grid-template-rows: minmax(260px, 34vw) auto;
  min-height: 560px;
  border: 1px solid rgba(16, 17, 20, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(16, 17, 20, 0.08);
}

.department-media {
  position: relative;
  overflow: hidden;
  background: #101114;
}

.department-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 17, 20, 0.54));
}

.department-content {
  padding: clamp(22px, 3vw, 34px);
}

.department-content > span {
  color: rgba(16, 17, 20, 0.48);
  font-size: 11px;
  font-weight: 900;
}

.department-content h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.department-content p,
.work-grid p {
  margin: 14px 0 0;
  color: rgba(16, 17, 20, 0.62);
  font-size: 15px;
  line-height: 1.52;
}

.department-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.department-actions .btn,
.department-actions .mail-pill {
  min-height: 44px;
}

.mail-pill {
  border: 1px solid rgba(16, 17, 20, 0.12);
  background: rgba(16, 17, 20, 0.04);
}

.compact-contact,
.work-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(56px, 8vw, 100px);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(16, 17, 20, 0.11);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(16, 17, 20, 0.07);
}

.compact-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.compact-contact h2,
.work-section h2 {
  font-size: clamp(32px, 4.8vw, 68px);
}

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  background: #f5f3ee;
  font-size: 14px;
}

.contact-list span {
  color: rgba(16, 17, 20, 0.62);
  overflow-wrap: anywhere;
}

.compact-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(16, 17, 20, 0.1);
  color: rgba(16, 17, 20, 0.62);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.department-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0 clamp(48px, 7vw, 92px);
}

.department-hero h1 {
  font-size: clamp(42px, 6.2vw, 84px);
}

.compact-visual {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(16, 17, 20, 0.16);
}

.compact-visual img {
  filter: none;
  min-height: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.work-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  background: #f5f3ee;
}

.work-grid h3 {
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.16;
}

.work-grid svg {
  color: #101114;
}

.music-hero .compact-kicker,
.department-card:nth-child(3) .mail-pill {
  background: rgba(24, 211, 197, 0.16);
}

.ink-hero .compact-kicker,
.department-card:nth-child(2) .mail-pill {
  background: rgba(255, 90, 72, 0.14);
}

.social-hero .compact-kicker,
.department-card:nth-child(4) .mail-pill {
  background: rgba(217, 255, 47, 0.28);
}

@media (max-width: 980px) {
  .compact-nav {
    flex-wrap: wrap;
  }

  .compact-hero,
  .department-hero,
  .compact-contact {
    grid-template-columns: 1fr;
  }

  .department-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compact-hero-media,
  .compact-visual {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .compact-header {
    position: relative;
    top: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 8px;
    margin-top: 10px;
  }

  .compact-mail span {
    display: none;
  }

  .compact-hero,
  .department-hero {
    padding-top: 52px;
  }

  .department-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .department-card {
    min-height: auto;
  }

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

  .compact-hero-media img:first-child {
    grid-row: auto;
  }

  .contact-list a,
  .compact-footer {
    flex-direction: column;
  }
}

/* ============================================================
   Split-screen homepage (lavega-style interactive entry)
   ============================================================ */
.split-site {
  background: #08090b;
  color: #f6f6f4;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, sans-serif;
  overflow: hidden;
}

.split-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.split-header > * { pointer-events: auto; }

.split-brand img {
  height: 22px;
  width: auto;
  filter: invert(1) brightness(2);
}

.split-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f6f6f4;
  opacity: 0.85;
}

.split-mail {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #f6f6f4;
  text-decoration: none;
  border-bottom: 1px solid rgba(246,246,244,0.4);
  padding-bottom: 2px;
  transition: border-color .25s ease;
}
.split-mail:hover { border-color: #f6f6f4; }

.split-stage {
  flex: 1;
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.split-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  color: #f6f6f4;
  display: flex;
  align-items: flex-end;
  padding: 0 28px 56px;
  transition: flex-grow 700ms cubic-bezier(.6,.05,.2,1);
  border-right: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
  cursor: pointer;
}

.split-panel:last-child { border-right: 0; }

.split-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1200ms cubic-bezier(.6,.05,.2,1), filter 700ms ease;
  filter: grayscale(0.55) brightness(0.55) contrast(1.05);
  z-index: -2;
}

.split-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,11,0.15) 0%, rgba(8,9,11,0.85) 100%),
    linear-gradient(0deg, rgba(8,9,11,0.35), rgba(8,9,11,0.35));
  transition: opacity 700ms ease, background 700ms ease;
  z-index: -1;
}

.split-index {
  position: absolute;
  top: 80px;
  left: 28px;
  font-family: "Instrument Serif", serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

.split-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  transform: translateY(8px);
  transition: transform 600ms cubic-bezier(.6,.05,.2,1), opacity 500ms ease;
}

.split-kicker {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.8;
}

.split-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

/* Logo + suffix wordmark used inside panels and department headers */
.dep-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
}
.dep-mark img {
  height: 0.78em;
  width: auto;
  display: block;
}
.dep-mark em {
  font-style: italic;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.9em;
  line-height: 1;
}
/* Invert logo on dark backgrounds */
.split-site .dep-mark img,
.department-cta .dep-mark img {
  filter: invert(1) brightness(2);
}
/* Header / footer logo on light page stays original */
.compact-brand.dep-mark img { height: 22px; }
.compact-brand.dep-mark em { font-size: 18px; opacity: 0.78; }
.compact-footer .dep-mark img { height: 16px; }
.compact-footer .dep-mark em { font-size: 14px; opacity: 0.7; }

/* Large hero wordmark for department pages */
.dep-hero-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 18px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dep-hero-title .dep-mark { font-size: 1em; }
.dep-hero-title .dep-mark img { height: 0.78em; }
.dep-hero-sub {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: rgba(16,17,20,0.78);
  max-width: 560px;
}
.split-site .dep-hero-sub { color: rgba(247,248,251,0.92); }

/* Numbered step cards inside .work-grid */
.work-grid .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Serif", serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: rgba(16,17,20,0.55);
  line-height: 1;
  margin-bottom: 6px;
}

/* Department CTA strip at bottom of detail pages */
.department-cta {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(24px, 6vw, 60px) auto clamp(40px, 7vw, 80px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  background: linear-gradient(135deg, #08090b, #15171c);
  color: #f6f6f4;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.department-cta .compact-kicker {
  background: rgba(246,246,244,0.08);
  color: rgba(246,246,244,0.85);
}
.department-cta h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
  max-width: 720px;
}
.department-cta p {
  margin: 0 0 12px;
  color: rgba(246,246,244,0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 580px;
}
.department-cta .btn.primary {
  background: var(--yellow);
  color: #08090b;
}
.department-cta .btn.secondary {
  background: transparent;
  color: #f6f6f4;
  border: 1px solid rgba(246,246,244,0.3);
}

/* ============================================================
   Full-page department layout (no header / no footer)
   ============================================================ */
.dept-fullpage {
  background: #08090b;
  color: #f6f6f4;
  min-height: 100vh;
  min-height: 100dvh;
}
.dept-fullpage main {
  padding-top: clamp(80px, 8vw, 120px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.dept-fullpage .department-hero {
  padding-top: 0;
}
.dept-fullpage h1,
.dept-fullpage h2,
.dept-fullpage h3,
.dept-fullpage p { color: inherit; }
.dept-fullpage .work-section h2 { color: #f6f6f4; }
.dept-fullpage .department-hero p,
.dept-fullpage .work-grid p {
  color: rgba(246,246,244,0.7);
}
.dept-fullpage .work-grid article {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.dept-fullpage .work-grid svg { color: #f6f6f4; }
.dept-fullpage .work-grid h3 { color: #f6f6f4; }
.dept-fullpage .work-grid .step-num { color: rgba(246,246,244,0.45); }
.dept-fullpage .compact-kicker {
  background: rgba(246,246,244,0.08);
  color: rgba(246,246,244,0.85);
}
.dept-fullpage .compact-visual {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}
.dept-fullpage .btn.primary {
  background: var(--yellow);
  color: #08090b;
}
.dept-fullpage .btn.secondary {
  background: transparent;
  color: #f6f6f4;
  border: 1px solid rgba(246,246,244,0.28);
}

/* Floating back-pill in top-left */
.dept-back {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(246,246,244,0.06);
  border: 1px solid rgba(246,246,244,0.18);
  backdrop-filter: blur(14px) saturate(160%);
  color: #f6f6f4;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.dept-back svg { width: 16px; height: 16px; }
.dept-back:hover {
  background: rgba(246,246,244,0.12);
  border-color: rgba(246,246,244,0.36);
  transform: translateX(-2px);
}
.dept-back:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .dept-back {
    top: 14px;
    left: 14px;
    padding: 8px 14px 8px 10px;
    font-size: 11px;
  }
}

.split-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246,246,244,0.78);
  max-width: 360px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 600ms ease, opacity 500ms ease;
}

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.split-cta svg { width: 16px; height: 16px; }

/* Hover behavior */
.split-stage:hover .split-panel { flex-grow: 0.6; }
.split-stage:hover .split-panel:hover { flex-grow: 2.4; }
.split-stage:hover .split-panel:not(:hover) .split-bg { filter: grayscale(0.85) brightness(0.32); }
.split-stage:hover .split-panel:not(:hover) .split-body { opacity: 0.55; }

.split-panel:hover .split-bg {
  transform: scale(1.0);
  filter: grayscale(0) brightness(0.7) contrast(1.05);
}
.split-panel:hover .split-veil {
  background:
    linear-gradient(180deg, rgba(8,9,11,0.0) 0%, rgba(8,9,11,0.78) 100%);
}
.split-panel:hover .split-body { transform: translateY(0); }
.split-panel:hover .split-desc { max-height: 100px; opacity: 1; }
.split-panel:hover .split-cta { opacity: 1; transform: translateY(0); }

.split-panel:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -10px;
}

.split-footer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,246,244,0.7);
  pointer-events: none;
  mix-blend-mode: difference;
}
.split-foot-mid { opacity: 0.55; }

/* Tablet & mobile: stack vertically with always-on info */
@media (max-width: 760px) {
  .split-site { overflow: auto; }
  .split-stage {
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
  }
  .split-panel {
    flex: 1 1 25vh;
    min-height: 30vh;
    padding: 96px 22px 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
  }
  .split-panel:last-child { border-bottom: 0; }
  .split-index { top: 22px; left: 22px; }
  .split-body { transform: none; max-width: none; }
  .split-desc { max-height: 200px; opacity: 1; }
  .split-cta { opacity: 1; transform: none; }
  .split-bg { filter: grayscale(0.2) brightness(0.55); }
  .split-stage:hover .split-panel,
  .split-stage:hover .split-panel:hover { flex-grow: 1; }
  .split-stage:hover .split-panel:not(:hover) .split-bg { filter: grayscale(0.2) brightness(0.55); }
  .split-stage:hover .split-panel:not(:hover) .split-body { opacity: 1; }
  .split-header { padding: 14px 18px; }
  .split-tag { display: none; }
  .split-footer { padding: 12px 18px; font-size: 9px; }
  .split-foot-mid { display: none; }
}


/* ============================================================
   DEPARTMENT REDESIGN v2 — bespoke per department
   Each dept body class scopes its own palette + layout.
   Override generic .department-hero / .work-section styles.
   ============================================================ */

/* --- Reset shared dept canvas -------------------------------- */
body.dept-v2 { background: var(--dept-bg, #0a0a0a); color: var(--dept-fg, #ece6d8); margin: 0; min-height: 100vh; font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.dept-v2 main { display: block; max-width: none; padding: 0; }
body.dept-v2 .dept-back { position: fixed; top: 22px; left: 22px; z-index: 50; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px 10px 12px; background: rgba(255,255,255,0.05); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; color: var(--dept-fg); text-decoration: none; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; transition: background .25s, border-color .25s, transform .25s; }
body.dept-v2 .dept-back:hover { background: rgba(255,255,255,0.1); transform: translateX(-2px); }
body.dept-v2 .dept-back svg { width: 14px; height: 14px; }

/* --- Shared meta bar / section primitives -------------------- */
.v2-meta-bar { position: fixed; top: 22px; right: 22px; z-index: 50; display: flex; gap: 18px; align-items: center; padding: 10px 16px; background: rgba(255,255,255,0.04); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(236,230,216,0.7); font-weight: 500; }
.v2-meta-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dept-accent, #ff5b1f); display: inline-block; margin-right: 8px; vertical-align: middle; box-shadow: 0 0 12px var(--dept-accent, #ff5b1f); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.v2-meta-bar span + span { padding-left: 18px; border-left: 1px solid rgba(255,255,255,0.1); }

.v2-section { padding: 120px max(40px, 6vw); position: relative; }
.v2-section-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dept-accent); font-weight: 600; margin-bottom: 28px; }
.v2-section-tag::before { content: ''; width: 28px; height: 1px; background: var(--dept-accent); display: inline-block; }
.v2-section h2 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(34px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 24px; max-width: 16ch; color: var(--dept-fg); }
.v2-section h2 em { font-style: italic; color: var(--dept-accent); }
.v2-section .lede { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 60ch; color: rgba(236,230,216,0.7); margin: 0 0 56px; }

/* --- v2 buttons ---------------------------------------------- */
.v2-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: transform .25s, background .25s, color .25s; cursor: pointer; border: none; }
.v2-btn-primary { background: var(--dept-accent); color: var(--dept-bg); }
.v2-btn-primary:hover { transform: translateY(-2px); }
.v2-btn-ghost { background: transparent; color: var(--dept-fg); border: 1px solid rgba(255,255,255,0.18); }
.v2-btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.v2-btn svg { width: 14px; height: 14px; }

/* ============================================================
   1) CREATIVE — yapım / production house
   Inspired by: Smuggler, MJZ, Imaginary Forces
   Palette: jet black + cream + warm orange
   ============================================================ */
body.dept-creative { --dept-bg: #0a0a0a; --dept-fg: #f5f1e8; --dept-accent: #ff5b1f; --dept-muted: #6b6657; }

.creative-hero { min-height: 100vh; padding: 140px max(40px, 6vw) 80px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.creative-hero::after { content: ''; position: absolute; inset: auto -10% -50% -10%; height: 70%; background: radial-gradient(ellipse at center top, rgba(255,91,31,0.18), transparent 60%); pointer-events: none; }
.creative-hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,241,232,0.5); position: relative; z-index: 2; }
.creative-hero-top span { display: block; }
.creative-hero-top strong { color: var(--dept-fg); font-weight: 600; display: block; margin-top: 4px; letter-spacing: 0.08em; }
.creative-hero-title { position: relative; z-index: 2; margin: auto 0; }
.creative-hero-title .kicker { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dept-accent); margin-bottom: 24px; font-weight: 600; }
.creative-hero-title h1 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(48px, 9vw, 132px); line-height: 0.95; letter-spacing: -0.03em; margin: 0; color: var(--dept-fg); max-width: 14ch; }
.creative-hero-title h1 em { font-style: italic; color: var(--dept-accent); }
.creative-hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; margin-top: 60px; }
.creative-hero-bottom p { max-width: 48ch; font-size: 16px; line-height: 1.55; color: rgba(245,241,232,0.7); margin: 0; }
.creative-hero-actions { display: flex; gap: 12px; }

/* Marquee */
.v2-marquee { padding: 36px 0; border-top: 1px solid rgba(245,241,232,0.1); border-bottom: 1px solid rgba(245,241,232,0.1); overflow: hidden; }
.v2-marquee-track { display: inline-flex; gap: 64px; white-space: nowrap; animation: marqueeScroll 40s linear infinite; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(28px, 4vw, 48px); color: var(--dept-fg); }
.v2-marquee-track span::after { content: '✦'; margin-left: 64px; color: var(--dept-accent); font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Service grid (creative) */
.creative-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid rgba(245,241,232,0.1); }
.creative-service { padding: 60px 48px; border-right: 1px solid rgba(245,241,232,0.1); border-bottom: 1px solid rgba(245,241,232,0.1); position: relative; transition: background .3s; cursor: default; }
.creative-service:nth-child(2n) { border-right: none; }
.creative-service:hover { background: rgba(255,91,31,0.06); }
.creative-service .num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; color: var(--dept-accent); margin-bottom: 32px; }
.creative-service h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--dept-fg); }
.creative-service p { font-size: 15px; line-height: 1.55; color: rgba(245,241,232,0.6); margin: 0; max-width: 42ch; }

/* Showcase */
.creative-showcase-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.creative-showcase-card { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; background: #1a1813; cursor: pointer; }
.creative-showcase-card.span-6 { grid-column: span 6; }
.creative-showcase-card.span-4 { grid-column: span 4; }
.creative-showcase-card.span-8 { grid-column: span 8; aspect-ratio: 16/9; }
.creative-showcase-card .ph { position: absolute; inset: 0; background: linear-gradient(135deg, #2a251c 0%, #0f0d0a 100%); display: flex; align-items: center; justify-content: center; color: rgba(245,241,232,0.15); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 56px; }
.creative-showcase-card .meta { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: var(--dept-fg); }
.creative-showcase-card .meta .cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dept-accent); margin-bottom: 8px; font-weight: 600; }
.creative-showcase-card .meta .name { font-family: 'Instrument Serif', serif; font-size: 24px; line-height: 1.1; margin: 0; }
.creative-showcase-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); pointer-events: none; }

/* Process timeline */
.creative-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(245,241,232,0.15); position: relative; }
.creative-process::before { content: ''; position: absolute; top: 50px; left: 5%; right: 5%; height: 1px; background: repeating-linear-gradient(to right, rgba(255,91,31,0.4) 0 6px, transparent 6px 12px); z-index: 0; }
.creative-process-step { padding: 40px 24px 0; position: relative; z-index: 1; text-align: left; }
.creative-process-step .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--dept-accent); margin-bottom: 36px; box-shadow: 0 0 0 6px rgba(255,91,31,0.15); }
.creative-process-step .num { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,241,232,0.5); margin-bottom: 12px; font-weight: 600; }
.creative-process-step h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0 0 12px; color: var(--dept-fg); }
.creative-process-step p { font-size: 14px; line-height: 1.55; color: rgba(245,241,232,0.6); margin: 0; }

/* Capabilities */
.creative-caps { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.creative-caps-col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dept-accent); margin: 0 0 24px; font-weight: 600; }
.creative-caps-col ul { list-style: none; padding: 0; margin: 0; }
.creative-caps-col li { padding: 16px 0; border-bottom: 1px solid rgba(245,241,232,0.08); font-size: 17px; color: var(--dept-fg); display: flex; justify-content: space-between; align-items: center; }
.creative-caps-col li small { color: rgba(245,241,232,0.4); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Contact */
.creative-contact { background: var(--dept-fg); color: var(--dept-bg); padding: 100px max(40px, 6vw); text-align: left; }
.creative-contact h2 { color: var(--dept-bg); max-width: 14ch; }
.creative-contact .lede { color: rgba(10,10,10,0.65); }
.creative-contact .v2-section-tag { color: var(--dept-accent); }
.creative-contact .v2-section-tag::before { background: var(--dept-accent); }
.creative-contact .v2-btn-primary { background: var(--dept-bg); color: var(--dept-fg); }
.creative-contact .v2-btn-ghost { color: var(--dept-bg); border-color: rgba(10,10,10,0.18); }
.creative-contact .v2-btn-ghost:hover { background: rgba(10,10,10,0.06); }
.creative-contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: end; }
.creative-contact-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.creative-contact-meta div { font-size: 14px; line-height: 1.5; }
.creative-contact-meta strong { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(10,10,10,0.5); margin-bottom: 6px; font-weight: 600; }
.creative-contact-meta a { color: var(--dept-bg); text-decoration: none; border-bottom: 1px solid rgba(10,10,10,0.2); }

/* ============================================================
   2) INK — editorial tattoo studio
   Inspired by: Sang Bleu, Bang Bang NYC
   Palette: ink black + bone + blood red
   ============================================================ */
body.dept-ink { --dept-bg: #0c0c0c; --dept-fg: #ece6d8; --dept-accent: #a3170a; --dept-muted: #6b6657; }

.ink-hero-v2 { min-height: 100vh; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; position: relative; }
.ink-hero-v2-text { padding: 140px max(40px, 5vw) 80px; display: flex; flex-direction: column; justify-content: space-between; }
.ink-hero-v2-text .kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dept-accent); margin-bottom: 32px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.ink-hero-v2-text .kicker::before { content: ''; width: 32px; height: 1px; background: var(--dept-accent); }
.ink-hero-v2-text h1 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(48px, 7.5vw, 112px); line-height: 0.95; letter-spacing: -0.025em; margin: 0; color: var(--dept-fg); }
.ink-hero-v2-text h1 em { font-style: italic; color: var(--dept-accent); }
.ink-hero-v2-text .sub { font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(20px, 2vw, 26px); line-height: 1.3; margin: 32px 0 0; color: rgba(236,230,216,0.7); max-width: 28ch; }
.ink-hero-v2-text .actions { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.ink-hero-v2-image { position: relative; overflow: hidden; background: #1a1a1a; }
.ink-hero-v2-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); }
.ink-hero-v2-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, rgba(163,23,10,0.15) 100%); }

/* Manifesto */
.ink-manifesto { padding: 140px max(40px, 8vw); border-top: 1px solid rgba(236,230,216,0.08); border-bottom: 1px solid rgba(236,230,216,0.08); }
.ink-manifesto blockquote { margin: 0 auto; max-width: 24ch; font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(36px, 5.5vw, 76px); line-height: 1.05; letter-spacing: -0.02em; color: var(--dept-fg); text-align: center; }
.ink-manifesto blockquote em { font-style: italic; color: var(--dept-accent); }
.ink-manifesto .by { display: block; margin: 32px auto 0; max-width: 40ch; text-align: center; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(236,230,216,0.5); font-weight: 500; }

/* Instagram feed */
.ink-feed-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.ink-feed-head h2 { margin: 0; max-width: none; }
.ink-feed-head .live { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(236,230,216,0.7); font-weight: 600; }
.ink-feed-head .live .pulse { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 0 rgba(46,204,113,0.7); animation: livePulse 1.6s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); } 100% { box-shadow: 0 0 0 14px rgba(46,204,113,0); } }
.ink-feed-head .more { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dept-fg); text-decoration: none; border-bottom: 1px solid rgba(236,230,216,0.3); padding-bottom: 4px; transition: color .25s, border-color .25s; font-weight: 600; }
.ink-feed-head .more:hover { color: var(--dept-accent); border-color: var(--dept-accent); }
.ink-feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ink-feed-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #1a1a1a; text-decoration: none; display: block; }
.ink-feed-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05); transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s; }
.ink-feed-tile:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }
.ink-feed-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%); opacity: 0; transition: opacity .3s; }
.ink-feed-tile:hover::after { opacity: 1; }
.ink-feed-tile .ig-icon { position: absolute; right: 12px; top: 12px; width: 24px; height: 24px; opacity: 0; transition: opacity .3s; color: var(--dept-fg); z-index: 2; }
.ink-feed-tile:hover .ig-icon { opacity: 1; }
.ink-feed-tile .ph-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(236,230,216,0.1); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 64px; pointer-events: none; }

/* Style menu */
.ink-styles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(236,230,216,0.1); }
.ink-style { padding: 48px 32px; border-right: 1px solid rgba(236,230,216,0.1); transition: background .3s; }
.ink-style:last-child { border-right: none; }
.ink-style:hover { background: rgba(163,23,10,0.06); }
.ink-style .num { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--dept-accent); font-size: 16px; margin-bottom: 24px; display: block; }
.ink-style h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 28px; line-height: 1.1; margin: 0 0 12px; color: var(--dept-fg); }
.ink-style p { font-size: 14px; line-height: 1.55; color: rgba(236,230,216,0.6); margin: 0; }

/* Booking process */
.ink-booking { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ink-booking-step { padding-top: 32px; border-top: 2px solid var(--dept-accent); }
.ink-booking-step .num { font-family: 'Instrument Serif', serif; font-size: 48px; color: var(--dept-accent); line-height: 1; margin-bottom: 16px; }
.ink-booking-step h3 { font-size: 16px; line-height: 1.3; margin: 0 0 12px; color: var(--dept-fg); font-weight: 600; letter-spacing: -0.01em; }
.ink-booking-step p { font-size: 14px; line-height: 1.55; color: rgba(236,230,216,0.6); margin: 0; }

/* FAQ */
.ink-faq { display: grid; gap: 0; max-width: 880px; }
.ink-faq details { border-top: 1px solid rgba(236,230,216,0.12); padding: 28px 0; }
.ink-faq details:last-child { border-bottom: 1px solid rgba(236,230,216,0.12); }
.ink-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(20px, 2vw, 28px); color: var(--dept-fg); line-height: 1.2; }
.ink-faq summary::-webkit-details-marker { display: none; }
.ink-faq summary::after { content: '+'; font-family: 'Inter', sans-serif; font-size: 24px; color: var(--dept-accent); flex-shrink: 0; transition: transform .25s; line-height: 1; }
.ink-faq details[open] summary::after { transform: rotate(45deg); }
.ink-faq details p { margin: 18px 0 0; font-size: 15px; line-height: 1.6; color: rgba(236,230,216,0.7); max-width: 65ch; }

/* Ink CTA */
.ink-cta { background: var(--dept-accent); color: var(--dept-fg); padding: 120px max(40px, 6vw); }
.ink-cta h2 { color: var(--dept-fg); }
.ink-cta .v2-section-tag { color: var(--dept-fg); }
.ink-cta .v2-section-tag::before { background: var(--dept-fg); }
.ink-cta .lede { color: rgba(236,230,216,0.85); }
.ink-cta .v2-btn-primary { background: var(--dept-fg); color: var(--dept-accent); }
.ink-cta .v2-btn-ghost { color: var(--dept-fg); border-color: rgba(236,230,216,0.4); }

/* ============================================================
   3) MUSIC — neon studio + distribution
   Inspired by: Boiler Room, Spotify for Artists, XL
   Palette: midnight indigo + violet + cyan
   ============================================================ */
body.dept-music { --dept-bg: #07081a; --dept-fg: #f1f0ff; --dept-accent: #22d3ee; --dept-accent-2: #8b5cf6; --dept-muted: #5e6086; }

.music-hero-v2 { min-height: 100vh; padding: 140px max(40px, 6vw) 80px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.music-hero-v2::before { content: ''; position: absolute; top: -20%; right: -10%; width: 80vw; height: 80vw; max-width: 1100px; max-height: 1100px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(139,92,246,0.4), rgba(34,211,238,0.15) 40%, transparent 70%); filter: blur(40px); animation: orbDrift 20s ease-in-out infinite alternate; }
.music-hero-v2::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle at 70% 70%, rgba(34,211,238,0.3), rgba(139,92,246,0.1) 50%, transparent 70%); filter: blur(50px); animation: orbDrift 24s ease-in-out infinite alternate-reverse; }
@keyframes orbDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px, 40px) scale(1.1); } }
.music-hero-v2 > * { position: relative; z-index: 2; }
.music-hero-v2 .kicker { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dept-accent); margin-bottom: 32px; font-weight: 700; display: inline-flex; align-items: center; gap: 12px; }
.music-hero-v2 .kicker::before { content: ''; width: 32px; height: 1px; background: var(--dept-accent); }
.music-hero-v2 h1 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(48px, 9vw, 140px); line-height: 0.92; letter-spacing: -0.03em; margin: 0; color: var(--dept-fg); max-width: 14ch; }
.music-hero-v2 h1 em { font-style: italic; background: linear-gradient(135deg, var(--dept-accent), var(--dept-accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.music-hero-v2 .sub { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.55; color: rgba(241,240,255,0.7); margin: 32px 0 0; max-width: 56ch; }
.music-hero-v2 .actions { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.music-hero-v2 .v2-btn-primary { background: linear-gradient(135deg, var(--dept-accent), var(--dept-accent-2)); color: var(--dept-bg); }

/* Stats */
.music-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(241,240,255,0.08); border-bottom: 1px solid rgba(241,240,255,0.08); }
.music-stat { padding: 56px 32px; border-right: 1px solid rgba(241,240,255,0.08); }
.music-stat:last-child { border-right: none; }
.music-stat .num { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(48px, 6vw, 84px); line-height: 1; margin-bottom: 12px; background: linear-gradient(135deg, var(--dept-fg), var(--dept-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.music-stat .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241,240,255,0.55); font-weight: 600; }

/* Two pillars */
.music-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid rgba(241,240,255,0.08); }
.music-pillar { padding: 100px 56px; border-right: 1px solid rgba(241,240,255,0.08); position: relative; overflow: hidden; }
.music-pillar:last-child { border-right: none; }
.music-pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--dept-accent); }
.music-pillar:nth-child(2)::before { background: var(--dept-accent-2); }
.music-pillar .num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; color: var(--dept-accent); margin-bottom: 36px; display: block; }
.music-pillar:nth-child(2) .num { color: var(--dept-accent-2); }
.music-pillar h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 24px; color: var(--dept-fg); }
.music-pillar p { font-size: 16px; line-height: 1.6; color: rgba(241,240,255,0.7); margin: 0 0 40px; max-width: 50ch; }
.music-pillar ul { list-style: none; padding: 0; margin: 0; }
.music-pillar li { padding: 14px 0; border-top: 1px solid rgba(241,240,255,0.08); font-size: 15px; color: rgba(241,240,255,0.85); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.music-pillar li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--dept-accent); flex-shrink: 0; }
.music-pillar:nth-child(2) li::before { background: var(--dept-accent-2); }

/* Catalog ticker */
.music-catalog { padding: 80px 0; border-bottom: 1px solid rgba(241,240,255,0.08); }
.music-catalog .head { padding: 0 max(40px, 6vw); margin-bottom: 48px; display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; }
.music-catalog h2 { margin: 0; max-width: none; }
.music-catalog-strip { display: flex; gap: 24px; overflow-x: auto; padding: 0 max(40px, 6vw) 8px; scrollbar-width: thin; scrollbar-color: rgba(241,240,255,0.2) transparent; }
.music-catalog-strip::-webkit-scrollbar { height: 6px; }
.music-catalog-strip::-webkit-scrollbar-thumb { background: rgba(241,240,255,0.2); border-radius: 3px; }
.music-release { flex: 0 0 240px; cursor: pointer; }
.music-release-art { width: 100%; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--dept-accent-2), var(--dept-accent)); position: relative; margin-bottom: 16px; transition: transform .3s; }
.music-release:hover .music-release-art { transform: translateY(-4px); }
.music-release-art:nth-child(odd) { background: linear-gradient(135deg, var(--dept-accent), #ec4899); }
.music-release-art .ph-letter { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 88px; color: rgba(255,255,255,0.95); text-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.music-release .meta { display: flex; flex-direction: column; gap: 4px; }
.music-release .title { font-size: 15px; color: var(--dept-fg); font-weight: 600; }
.music-release .artist { font-size: 13px; color: rgba(241,240,255,0.55); }

/* Roster */
.music-roster { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.music-artist { aspect-ratio: 1/1; border-radius: 50%; background: linear-gradient(135deg, rgba(139,92,246,0.4), rgba(34,211,238,0.4)); display: flex; align-items: center; justify-content: center; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 36px; color: rgba(241,240,255,0.85); position: relative; cursor: default; transition: transform .3s; }
.music-artist:hover { transform: scale(1.04); }
.music-artist .name { position: absolute; bottom: -28px; left: 0; right: 0; text-align: center; font-family: 'Inter', sans-serif; font-style: normal; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(241,240,255,0.5); font-weight: 600; }

/* Process music */
.music-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.music-step { padding: 32px; background: rgba(241,240,255,0.03); border: 1px solid rgba(241,240,255,0.08); border-radius: 16px; transition: border-color .25s, background .25s; }
.music-step:hover { background: rgba(34,211,238,0.05); border-color: rgba(34,211,238,0.3); }
.music-step .num { font-family: 'Instrument Serif', serif; font-size: 32px; line-height: 1; color: var(--dept-accent); margin-bottom: 24px; display: block; }
.music-step h3 { font-size: 17px; line-height: 1.3; margin: 0 0 12px; color: var(--dept-fg); font-weight: 600; }
.music-step p { font-size: 14px; line-height: 1.55; color: rgba(241,240,255,0.65); margin: 0; }

/* Music CTA */
.music-cta { padding: 140px max(40px, 6vw); background: radial-gradient(ellipse at center, rgba(139,92,246,0.15), transparent 60%), var(--dept-bg); text-align: center; position: relative; }
.music-cta h2 { margin: 24px auto 24px; max-width: 22ch; text-align: center; font-size: clamp(40px, 6vw, 80px); }
.music-cta .lede { margin: 0 auto 40px; text-align: center; }
.music-cta .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.music-cta .v2-section-tag { justify-content: center; }
.music-cta .v2-btn-primary { background: linear-gradient(135deg, var(--dept-accent), var(--dept-accent-2)); color: var(--dept-bg); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .v2-section { padding: 80px 24px; }
  .creative-hero, .ink-hero-v2-text, .music-hero-v2 { padding: 100px 24px 60px; }
  .creative-services, .ink-styles, .music-stats, .music-pillars, .music-process, .music-roster { grid-template-columns: 1fr 1fr; }
  .creative-service:nth-child(2n), .ink-style:nth-child(2n), .music-stat:nth-child(2n), .music-pillar:nth-child(2n) { border-right: none; }
  .creative-service, .ink-style, .music-stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .creative-process, .ink-booking { grid-template-columns: 1fr 1fr; gap: 32px; }
  .creative-process::before { display: none; }
  .creative-showcase-grid .span-6, .creative-showcase-grid .span-4, .creative-showcase-grid .span-8 { grid-column: span 12; }
  .creative-caps, .creative-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ink-hero-v2 { grid-template-columns: 1fr; }
  .ink-hero-v2-image { min-height: 50vh; }
  .ink-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .music-pillar { padding: 60px 28px; }
}
@media (max-width: 580px) {
  .creative-services, .ink-styles, .music-stats, .music-pillars, .music-process, .music-roster, .creative-process, .ink-booking { grid-template-columns: 1fr; }
  .ink-feed-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .v2-meta-bar { display: none; }
  .creative-contact-meta { grid-template-columns: 1fr; }
}

/* v2 — lowercase variant for email/URL buttons & contact meta links */
.v2-btn.lower,
.v2-btn[href^="mailto:"],
.v2-btn[href*="artists.yunglerz.com"],
.v2-btn[href*="@yunglerzink"] { text-transform: none; letter-spacing: 0.01em; font-weight: 500; font-size: 13px; }
.creative-contact-meta a { text-transform: none; letter-spacing: 0; }

/* Instagram CTA panel (replaces empty number grid) */
.ink-ig-panel { position: relative; overflow: hidden; border-radius: 16px; background: #111; min-height: 420px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border: 1px solid rgba(236,230,216,0.08); }
.ink-ig-panel-text { padding: 56px 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; position: relative; z-index: 2; }
.ink-ig-panel-text .handle { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: 0.04em; color: rgba(236,230,216,0.85); font-weight: 600; }
.ink-ig-panel-text .handle svg { width: 22px; height: 22px; color: var(--dept-accent); }
.ink-ig-panel-text h3 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.02em; margin: 0; color: var(--dept-fg); }
.ink-ig-panel-text h3 em { font-style: italic; color: var(--dept-accent); }
.ink-ig-panel-text p { font-size: 15px; line-height: 1.6; color: rgba(236,230,216,0.65); margin: 0; max-width: 42ch; }
.ink-ig-panel-text .stats { display: flex; gap: 32px; flex-wrap: wrap; }
.ink-ig-panel-text .stats div { display: flex; flex-direction: column; gap: 4px; }
.ink-ig-panel-text .stats strong { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 28px; color: var(--dept-fg); line-height: 1; }
.ink-ig-panel-text .stats span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(236,230,216,0.5); font-weight: 600; }
.ink-ig-panel-text .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ink-ig-panel-art { position: relative; background: radial-gradient(circle at 30% 30%, rgba(163,23,10,0.15), transparent 60%), linear-gradient(135deg, #0c0c0c, #1a1413); overflow: hidden; }
.ink-ig-panel-art::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(236,230,216,0.06) 1px, transparent 1px); background-size: 14px 14px; }
.ink-ig-panel-art::after { content: ''; position: absolute; inset: 24px; border: 1px solid rgba(236,230,216,0.12); border-radius: 8px; }
.ink-ig-glyph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ink-ig-glyph svg { width: 40%; max-width: 180px; height: auto; color: rgba(236,230,216,0.18); }
.ink-ig-floating { position: absolute; padding: 10px 14px; background: rgba(20,20,20,0.85); backdrop-filter: blur(10px); border: 1px solid rgba(236,230,216,0.1); border-radius: 10px; font-size: 11px; color: var(--dept-fg); letter-spacing: 0.02em; display: flex; align-items: center; gap: 8px; }
.ink-ig-floating .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--dept-accent); box-shadow: 0 0 10px var(--dept-accent); }
.ink-ig-floating.f1 { top: 32px; right: 32px; }
.ink-ig-floating.f2 { bottom: 32px; left: 32px; }
@media (max-width: 780px) {
  .ink-ig-panel { grid-template-columns: 1fr; min-height: auto; }
  .ink-ig-panel-art { min-height: 280px; }
  .ink-ig-panel-text { padding: 36px 28px; }
}
