@import url("../../style.css");

body.restricted-body {
  background:
    radial-gradient(circle at top left, rgba(201, 164, 94, 0.12), transparent 26rem),
    linear-gradient(180deg, #f8f1e4 0%, #efe6d3 100%);
}

.restricted-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.restricted-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 22, 15, 0.94);
  color: var(--cream-2);
  border-bottom: 1px solid rgba(201, 164, 94, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.restricted-header .header-frame {
  grid-template-columns: auto 1fr auto;
}

.restricted-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.restricted-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.restricted-brand span {
  display: grid;
  gap: 4px;
}

.restricted-brand small,
.restricted-brand em {
  font-style: normal;
}

.restricted-brand small {
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.restricted-brand strong {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  color: var(--cream-2);
}

.restricted-brand em {
  color: rgba(248, 241, 228, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restricted-main {
  padding: 42px 0 56px;
}

.restricted-card,
.restricted-sidebar,
.restricted-panel,
.login-panel {
  border-radius: 28px;
  border: 1px solid rgba(201, 164, 94, 0.18);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.restricted-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: start;
}

.restricted-layout-wide {
  grid-template-columns: 250px minmax(0, 1fr);
}

.restricted-sidebar {
  padding: 22px 18px;
  position: sticky;
  top: 108px;
}

.restricted-sidebar h2 {
  margin: 0 0 16px;
  font-family: Cinzel, Georgia, serif;
  color: var(--green-950);
  font-size: 1.2rem;
}

.restricted-menu {
  display: grid;
  gap: 10px;
}

.restricted-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--green-900);
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.restricted-menu a:hover,
.restricted-menu a.active {
  background: rgba(201, 164, 94, 0.12);
  color: var(--green-950);
  transform: translateX(3px);
}

.restricted-menu-group {
  display: grid;
  gap: 8px;
}

.restricted-menu-group.active {
  background: transparent;
}

.restricted-menu-parent {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--green-900);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.restricted-menu-parent::-webkit-details-marker {
  display: none;
}

.restricted-menu-parent span {
  color: var(--green-950);
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.restricted-menu-parent i {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid rgba(3, 22, 15, 0.62);
  border-bottom: 1.8px solid rgba(3, 22, 15, 0.62);
  transform: rotate(45deg);
  transition: transform var(--ease);
  flex: 0 0 auto;
}

.restricted-menu-parent:hover,
.restricted-menu-group[open] .restricted-menu-parent {
  background: rgba(201, 164, 94, 0.12);
  color: var(--green-950);
  transform: translateX(3px);
}

.restricted-menu-group[open] .restricted-menu-parent i {
  transform: rotate(225deg);
}

.restricted-submenu {
  display: grid;
  gap: 6px;
  margin-left: 14px;
  padding-left: 12px;
  border-left: 1px solid rgba(201, 164, 94, 0.22);
}

.restricted-submenu a {
  position: relative;
  padding: 10px 12px 10px 24px;
  border-radius: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  background: transparent;
}

.restricted-submenu a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(201, 164, 94, 0.5);
  transform: translateY(-50%);
  transition: background var(--ease), transform var(--ease);
}

.restricted-submenu a:hover::before,
.restricted-submenu a.active::before {
  background: var(--gold);
  transform: translateY(-50%) scale(1.2);
}

.restricted-content {
  display: grid;
  gap: 24px;
}

.restricted-card {
  padding: 28px;
}

.restricted-card h1,
.restricted-card h2,
.restricted-panel h3,
.login-panel h1 {
  margin: 0 0 12px;
  font-family: Cinzel, Georgia, serif;
  color: var(--green-950);
}

.restricted-card p,
.restricted-panel p,
.login-panel p,
.restricted-item p {
  color: var(--muted);
}

.restricted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.restricted-panel {
  padding: 22px 20px;
}

.restricted-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.restricted-list {
  display: grid;
  gap: 16px;
}

.restricted-item {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 94, 0.16);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.restricted-item header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.restricted-item h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  color: var(--green-950);
}

.restricted-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(3, 22, 15, 0.94);
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-panel {
  width: min(100%, 460px);
  padding: 34px 30px;
}

.login-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.login-back:hover {
  color: var(--green-950);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.login-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.login-brand strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  color: var(--green-950);
  font-size: 1.15rem;
}

.login-brand small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--green-950);
  font-weight: 700;
}

.form-field input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 94, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-950);
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(201, 164, 94, 0.22);
  border-color: rgba(201, 164, 94, 0.4);
}

.form-field textarea {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 94, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-950);
  font: inherit;
  resize: vertical;
  min-height: 110px;
}

.alert {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(110, 15, 26, 0.16);
  background: rgba(110, 15, 26, 0.06);
  color: #7b1620;
}

.muted-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.apprentice-hero,
.apprentice-panel {
  display: grid;
  gap: 18px;
}

.apprentice-hero {
  background:
    radial-gradient(circle at top left, rgba(201, 164, 94, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(3, 22, 15, 0.96), rgba(8, 50, 35, 0.92));
  color: var(--cream-2);
}

.apprentice-hero h1,
.apprentice-panel h2 {
  margin: 0;
}

.apprentice-hero h1 {
  color: var(--cream-2);
}

.apprentice-hero p {
  color: rgba(248, 241, 228, 0.82);
}

.apprentice-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.apprentice-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(201, 164, 94, 0.56);
}

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

.apprentice-stats article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 164, 94, 0.14);
}

.apprentice-stats strong {
  color: var(--cream-2);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.4rem;
}

.apprentice-stats span {
  color: rgba(248, 241, 228, 0.72);
  font-size: 0.82rem;
}

.apprentice-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.apprentice-checklist {
  display: grid;
  gap: 16px;
}

.apprentice-builder {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.apprentice-form-grid {
  grid-template-columns: 1fr;
}

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

.apprentice-builder .birthday-form {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.apprentice-builder .birthday-preview-card {
  min-width: 0;
}

.apprentice-canvas-wrap canvas {
  background: #041a13;
  border-radius: 34px;
}

.birthday-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.birthday-form {
  padding: 26px;
  position: sticky;
  top: 108px;
}

.birthday-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.birthday-form input[type="file"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 68px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px dashed rgba(201, 164, 94, 0.3);
  background: rgba(255, 255, 255, 0.74);
}

.birthday-form input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.birthday-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.photo-adjust-group label {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.photo-adjust-tip {
  font-style: normal;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--muted);
}

.photo-adjust-controls {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 94, 0.18);
  background: rgba(255, 255, 255, 0.46);
}

.photo-adjust-row {
  display: grid;
  grid-template-columns: 84px auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.photo-adjust-row span {
  font-size: 0.78rem;
  color: var(--green-900);
  font-weight: 600;
}

.adj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(201, 164, 94, 0.28);
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-950);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  transition: background var(--ease), border-color var(--ease);
}

.adj-btn:hover {
  background: rgba(201, 164, 94, 0.14);
  border-color: rgba(201, 164, 94, 0.5);
}

.birthday-preview-card {
  padding: 22px;
  position: sticky;
  top: 108px;
}

.birthday-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.birthday-preview-head strong {
  color: var(--green-950);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.1rem;
}

.birthday-preview-head span {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.birthday-canvas-wrap {
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(201, 164, 94, 0.15), transparent 28rem),
    linear-gradient(180deg, rgba(7, 36, 26, 0.96), rgba(3, 22, 15, 0.96));
  box-shadow: inset 0 0 0 1px rgba(201, 164, 94, 0.15);
}

.birthday-canvas-wrap {
  position: relative;
}

.birthday-canvas-wrap canvas {
  width: min(100%, 600px);
  height: auto;
  display: block;
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  background: #083925;
  cursor: default;
  transition: cursor 0s;
}

.birthday-canvas-wrap canvas.can-drag  { cursor: grab; }
.birthday-canvas-wrap canvas.dragging  { cursor: grabbing; }

.canvas-drag-hint {
  position: absolute;
  bottom: 22px;
  right: 22px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(3, 22, 15, 0.80);
  border: 1px solid rgba(201, 164, 94, 0.30);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s, transform 0.28s;
  pointer-events: none;
}

.canvas-drag-hint.visible {
  opacity: 1;
  transform: translateY(0);
}

.restricted-main-player {
  padding-bottom: 132px;
}

.harmony-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.harmony-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(201, 164, 94, 0.56);
}

.harmony-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 280px;
  gap: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(201, 164, 94, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(3, 22, 15, 0.96), rgba(6, 43, 31, 0.92));
  color: var(--cream-2);
  border-color: rgba(201, 164, 94, 0.18);
}

.harmony-hero h1,
.harmony-panel h2 {
  color: var(--cream-2);
}

.harmony-hero p {
  color: rgba(248, 241, 228, 0.82);
}

.harmony-hero-copy {
  display: grid;
  gap: 18px;
}

.harmony-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.harmony-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.harmony-hero-stats article {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 164, 94, 0.14);
}

.harmony-hero-stats strong {
  color: var(--cream-2);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.5rem;
}

.harmony-hero-stats span {
  color: rgba(248, 241, 228, 0.72);
  font-size: 0.82rem;
}

.harmony-hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.harmony-vinyl {
  position: relative;
  width: 228px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(8, 50, 35, 0.2) 0 28px, rgba(0, 0, 0, 0.65) 29px 100%),
    repeating-radial-gradient(circle at center, rgba(255,255,255,0.03) 0 2px, rgba(0,0,0,0.0) 2px 10px);
  border: 1px solid rgba(201, 164, 94, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.harmony-vinyl::before,
.harmony-vinyl::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.harmony-vinyl::after {
  inset: 48px;
}

.harmony-vinyl-core {
  position: absolute;
  inset: 84px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7b36d, #b98b3b);
  box-shadow: inset 0 0 0 6px rgba(3, 22, 15, 0.4);
}

.harmony-seal {
  position: absolute;
  right: 4px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 241, 228, 0.08);
  border: 1px solid rgba(201, 164, 94, 0.22);
  backdrop-filter: blur(8px);
}

.harmony-seal img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.harmony-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.harmony-library,
.harmony-panel,
.harmony-upload-card {
  display: grid;
  gap: 18px;
}

.harmony-library-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.harmony-library-head h2 {
  margin: 6px 0 0;
}

.harmony-upload-link {
  white-space: nowrap;
}

.harmony-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.harmony-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(201, 164, 94, 0.12);
  color: var(--green-950);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.harmony-chip strong {
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
}

.harmony-track-grid {
  display: grid;
  gap: 14px;
}

.harmony-track-card {
  width: 100%;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 94, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(252, 248, 240, 0.9));
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.harmony-track-card:hover,
.harmony-track-card.active {
  transform: translateY(-2px);
  border-color: rgba(201, 164, 94, 0.36);
  box-shadow: 0 28px 60px rgba(42, 28, 10, 0.12);
}

.harmony-track-cover {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(201, 164, 94, 0.22), transparent 60%),
    linear-gradient(180deg, #062d1e, #0c4330);
  box-shadow: inset 0 0 0 1px rgba(201, 164, 94, 0.16);
}

.harmony-track-cover::after {
  content: "▶";
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 241, 228, 0.92);
  color: var(--green-950);
  font-size: 0.78rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.harmony-track-cover img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

.harmony-track-topline {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.harmony-track-copy strong {
  color: var(--green-950);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.1rem;
}

.harmony-track-copy small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.harmony-track-side {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.harmony-side {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 108px;
}

.harmony-panel {
  background:
    radial-gradient(circle at top right, rgba(201, 164, 94, 0.16), transparent 18rem),
    linear-gradient(160deg, rgba(3, 22, 15, 0.96), rgba(8, 50, 35, 0.94));
  color: var(--cream-2);
}

.harmony-panel p {
  color: rgba(248, 241, 228, 0.82);
}

.harmony-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.harmony-mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 164, 94, 0.18);
  color: rgba(248, 241, 228, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.harmony-upload-card {
  position: static;
}

.harmony-dock {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 84px minmax(220px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(201, 164, 94, 0.16);
  background:
    linear-gradient(180deg, rgba(5, 20, 14, 0.98), rgba(3, 22, 15, 0.98));
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.harmony-dock-cover {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(201, 164, 94, 0.22), transparent 60%),
    linear-gradient(180deg, #062d1e, #0c4330);
  box-shadow: inset 0 0 0 1px rgba(201, 164, 94, 0.18);
}

.harmony-dock-cover img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.harmony-dock-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.harmony-dock-copy strong {
  color: var(--cream-2);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.08rem;
}

.harmony-dock-copy span {
  color: rgba(248, 241, 228, 0.68);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.harmony-dock-controls {
  min-width: 0;
}

.harmony-audio {
  width: 100%;
}

@media (max-width: 1060px) {
  .restricted-layout,
  .restricted-grid {
    grid-template-columns: 1fr;
  }

  .restricted-sidebar {
    position: static;
  }

  .birthday-builder {
    grid-template-columns: 1fr;
  }

  .apprentice-grid,
  .apprentice-stats,
  .apprentice-meta-grid {
    grid-template-columns: 1fr;
  }

  .apprentice-builder {
    grid-template-columns: 1fr;
  }

  .harmony-hero,
  .harmony-experience {
    grid-template-columns: 1fr;
  }

  .birthday-form,
  .birthday-preview-card,
  .harmony-side {
    position: static;
  }

  .harmony-dock {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .harmony-dock-cover {
    display: none;
  }
}

@media (max-width: 720px) {
  .restricted-header .header-frame {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .restricted-brand {
    align-items: flex-start;
  }

  .login-panel {
    padding: 28px 22px;
  }

  .birthday-form-grid {
    grid-template-columns: 1fr;
  }

  .harmony-hero-stats,
  .harmony-track-card {
    grid-template-columns: 1fr;
  }

  .harmony-track-side {
    justify-items: start;
  }

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