/* === Custom Properties === */
:root {
  --eq-bg: #1a1a1a;
  --eq-surface: #161616;
  --eq-recess: #0c0c0c;
  --eq-border: #252525;
  --eq-text: #b8b8b8;
  --eq-text-dim: #787878;
  --eq-text-faint: #484848;
  --eq-radius: 4px;
  --font-mono: 'Azeret Mono', 'SF Mono', monospace;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-hand: 'Caveat', cursive;

  /* Left side — Private Function — warm, night, amber */
  --left-accent: #d4764e;
  --left-accent-glow: 0 0 8px rgba(212, 118, 78, 0.4);
  --left-accent-subtle: rgba(212, 118, 78, 0.08);
  --left-tint: rgba(212, 118, 78, 0.03);

  /* Right side — Adam Johnstone — cooler, softer, sage/teal */
  --right-accent: #6a9e8a;
  --right-accent-glow: 0 0 8px rgba(106, 158, 138, 0.4);
  --right-accent-subtle: rgba(106, 158, 138, 0.08);
  --right-tint: rgba(106, 158, 138, 0.03);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #c8c0b8;
  background-image:
    radial-gradient(ellipse at 30% 50%, #cfc5ba 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, #c0cac5 0%, transparent 60%),
    linear-gradient(180deg, #c8c0b8 0%, #b8b0a8 100%);
  color: var(--eq-text);
  font-family: var(--font-mono);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   THE UNIT
   ============================================ */
.equipment {
  width: 100%;
  max-width: 1300px;
  height: calc(100vh - 48px);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  animation: unit-power-on 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes unit-power-on {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* === Top Surface === */
.eq-surface {
  background: #1c1c1c;
  border: 1px solid #3a3a3a;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 -2px 20px rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Surface texture */
.eq-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px 14px 0 0;
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === LEDs === */
.eq-leds {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.led {
  width: 6px; height: 6px; border-radius: 50%;
  background: #111;
  border: 1px solid #2a2a2a;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
}

.led--active {
  background: var(--left-accent);
  box-shadow: var(--left-accent-glow), inset 0 -1px 1px rgba(0, 0, 0, 0.2);
  border: none;
  animation: led-pulse 3s ease-in-out infinite;
}

@keyframes led-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   THE TWO HALVES
   ============================================ */
.eq-half {
  padding: 20px;
  display: flex;
  flex-direction: column;
  animation: half-appear 0.6s ease both;
  position: relative;
  z-index: 2;
}

.eq-half__title {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 8px;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #bbb 40%, #888 70%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.8)) drop-shadow(0 -1px 0 rgba(255,255,255,0.08));
}

.eq-half__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
}

/* --- Left Half: Private Function --- */
.eq-half--left {
  background:
    linear-gradient(135deg, var(--left-tint), transparent 60%),
    #1c1c1c;
  border-right: 1px solid #222;
  border-radius: 14px 0 0 0;
  animation-delay: 0.3s;
}

.eq-half--left .eq-half__title {
  background: linear-gradient(180deg, #f0c8a8 0%, #d4764e 35%, #a85a3a 65%, #6b3822 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.9)) drop-shadow(0 2px 4px rgba(0,0,0,0.5)) drop-shadow(0 -1px 0 rgba(255,200,160,0.15));
}

.eq-half--left .eq-half__title::after {
  background: var(--left-accent);
  opacity: 0.5;
}

/* --- Right Half: Adam Johnstone --- */
.eq-half--right {
  background:
    linear-gradient(225deg, var(--right-tint), transparent 60%),
    #1c1c1c;
  border-left: 1px solid #222;
  border-radius: 0 14px 0 0;
  animation-delay: 0.45s;
}

.eq-half--right .eq-half__title {
  background: linear-gradient(180deg, #c8e8d8 0%, #6a9e8a 35%, #4a7a66 65%, #2a4a3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.9)) drop-shadow(0 2px 4px rgba(0,0,0,0.5)) drop-shadow(0 -1px 0 rgba(160,220,190,0.15));
}

.eq-half--right .eq-half__title::after {
  background: var(--right-accent);
  opacity: 0.5;
}

/* === Center: Turntable === */
.eq-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: half-appear 0.6s ease 0.15s both;
  padding: 12px 0;
  overflow: visible;
  min-height: 0;
}

/* Subtle split glow behind the turntable */
.eq-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 118, 78, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(106, 158, 138, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes half-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Screen — recessed LCD === */
.eq-screen {
  background: var(--eq-recess);
  border: 1px solid #111;
  border-radius: 6px;
  padding: 8px;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.03);
  flex: 1;
  overflow-y: auto;
}

.eq-screen::-webkit-scrollbar { width: 3px; }
.eq-screen::-webkit-scrollbar-track { background: transparent; }
.eq-screen::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }

/* === Turntable === */
.turntable {
  position: relative;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  z-index: 1;
  overflow: visible;
}

.platter {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 48%, #b8b8b8, #909090 70%, #808080);
  border: 3px solid #999;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
}

.record { width: 100%; height: 100%; }
.record--spinning { animation: spin 3.6s linear infinite; }
.record--stopped {
  animation-play-state: paused;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tonearm {
  position: absolute;
  top: -2%; right: -12%;
  width: 35%; height: auto;
  transform: rotate(-22deg);
  transform-origin: 60% 7%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  z-index: 100;
}

.tonearm:active { cursor: grabbing; }

.spin-control {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.spin-control__label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: #555;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.spin-toggle {
  width: 32px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #333, #222);
  border: 1px solid #555;
  cursor: pointer;
  padding: 0;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.15s;
  overflow: hidden;
}

.spin-toggle:active {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.spin-toggle__icon {
  display: block;
  width: 14px;
  height: 10px;
  background: linear-gradient(180deg, #888, #666);
  border-radius: 1px;
  border: 1px solid #999;
  position: relative;
  margin: 2px;
  transition: transform 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 0;
  color: transparent;
}

/* Switch ON (spinning) — toggle left */
.spin-toggle__icon {
  transform: translateX(0);
}

/* Switch OFF (paused) — toggle right */
.spin-toggle--paused .spin-toggle__icon {
  transform: translateX(14px);
  background: linear-gradient(180deg, #777, #555);
}

/* === Transport Strip === */
.eq-transport {
  background:
    linear-gradient(180deg, #222 0%, #1a1a1a 30%, #151515 100%);
  border: 1px solid #3a3a3a;
  border-top: 1px solid #2a2a2a;
  border-radius: 0 0 14px 14px;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.4);
  position: sticky;
  bottom: 0;
  z-index: 50;
}

.transport__play {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(180deg, #333, #222);
  border: 1px solid #444;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer; flex-shrink: 0;
  transition: transform 0.1s;
}

.transport__play:hover { background: linear-gradient(180deg, #3a3a3a, #282828); }
.transport__play:active { transform: scale(0.92); }
.transport__play-icon { color: #999; font-size: 11px; margin-left: 2px; }

.transport__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.transport__title {
  color: var(--eq-text);
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.transport__artist { color: var(--eq-text-dim); font-size: 8px; letter-spacing: 1px; }

.transport__scrubber {
  flex: 1; height: 3px;
  background: #111;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  margin: 0 8px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.transport__progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--left-accent), #e08a5e);
  border-radius: 3px;
  transition: width 0.1s linear;
  box-shadow: 0 0 6px rgba(212, 118, 78, 0.15);
}

.transport__head {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(180deg, #888, #666);
  border: 1px solid #999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  left: 0%;
  transition: left 0.1s linear;
}

.transport__time {
  color: var(--eq-text-dim);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.transport__emoji {
  display: flex;
  gap: 6px;
  margin-left: 8px;
  flex-shrink: 0;
  padding-left: 10px;
  border-left: 1px solid #2a2a2a;
}

/* === Mix List === */
.mix-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mix-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mix-item:hover {
  background: rgba(212, 118, 78, 0.04);
  border-color: rgba(212, 118, 78, 0.06);
}

.mix-item--active {
  background: rgba(212, 118, 78, 0.08);
  border-color: rgba(212, 118, 78, 0.15);
}

.mix-item--dimmed {
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
  transform: scale(0.98);
}

.mix-item__led {
  width: 4px; height: 4px; border-radius: 50%;
  background: #1a1a1a;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.mix-item--active .mix-item__led {
  background: var(--left-accent);
  box-shadow: var(--left-accent-glow);
}

.mix-item__title {
  color: #999;
  font-size: 11px;
  font-weight: 300;
  transition: color 0.2s;
}

.mix-item:hover .mix-item__title { color: #ccc; }
.mix-item--active .mix-item__title { color: #e0e0e0; }

.mix-item__duration {
  color: #555;
  font-size: 10px;
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

/* === Mood Fader === */
.mood-fader { padding-top: 4px; }

.mood-fader__track {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
}

.mood-fader__fill {
  position: absolute;
  top: 50%; left: 6px; right: 6px;
  transform: translateY(-50%);
  height: 3px;
  background: #080808;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.mood-fader__ticks {
  position: absolute;
  top: 6px; left: 6px; right: 6px;
  display: flex;
  justify-content: space-between;
}

.mood-fader__ticks span { width: 1px; height: 4px; background: #2a2a2a; }

.mood-fader__knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 26px;
  background: linear-gradient(180deg, #666, #444 30%, #555 50%, #3a3a3a 70%, #333);
  border-radius: 2px;
  border: 1px solid #777;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  cursor: grab;
  z-index: 2;
}

.mood-fader__knob:active { cursor: grabbing; }

.mood-fader__knob::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 1px;
  background: #888;
  box-shadow: 0 3px 0 #888, 0 -3px 0 #888;
}

.mood-fader__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  padding: 0 6px;
}

.mood-fader__labels span { color: #505050; font-size: 8px; letter-spacing: 2px; }

/* === Polaroids === */
.polaroid-pile {
  position: relative;
  flex: 1;
  min-height: 300px;
}

.polaroid {
  position: absolute;
  padding: 5px 5px 24px 5px;
  background: #f2ece0;
  box-shadow:
    1px 2px 4px rgba(0, 0, 0, 0.3),
    2px 4px 12px rgba(0, 0, 0, 0.2);
  cursor: grab;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.polaroid:hover {
  box-shadow:
    2px 4px 8px rgba(0, 0, 0, 0.4),
    4px 8px 20px rgba(0, 0, 0, 0.3);
}

.polaroid--dragging {
  cursor: grabbing !important;
  box-shadow:
    4px 8px 16px rgba(0, 0, 0, 0.5),
    8px 16px 32px rgba(0, 0, 0, 0.3);
  transform: rotate(0deg) scale(1.05) !important;
  transition: box-shadow 0.2s, transform 0.1s;
}

.polaroid__image {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; display: block;
  filter: saturate(0.9) contrast(1.05);
}

.polaroid__date {
  margin-top: 4px;
  font-family: var(--font-hand);
  font-size: 14px;
  color: #6a6050;
  text-align: center;
  font-weight: 500;
}

/* === Links === */
.eq-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.eq-link {
  color: #707070;
  font-size: 10px;
  padding: 7px 10px;
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: var(--eq-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 1px;
}

.eq-link:hover { border-color: #444; color: var(--eq-text); }
.eq-link__arrow { color: #333; transition: transform 0.2s, color 0.2s; }
.eq-link:hover .eq-link__arrow { transform: translateX(2px); color: var(--right-accent); }

/* === Emoji === */
.emoji-btn {
  font-size: 15px;
  opacity: 0.3;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 2px;
}

.emoji-btn:hover { opacity: 0.9; transform: scale(1.3); }

.emoji-float {
  position: fixed;
  font-size: 28px;
  pointer-events: none;
  animation: emoji-rise 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  z-index: 200;
}

@keyframes emoji-rise {
  0% { opacity: 1; transform: translateY(0) scale(0.8) rotate(0deg); }
  20% { opacity: 1; transform: translateY(-20px) scale(1.2) rotate(-5deg); }
  100% { opacity: 0; transform: translateY(-140px) scale(0.9) rotate(8deg); }
}

/* === Modal === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  animation: overlay-in 0.3s ease;
}

@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
.modal-overlay[hidden] { display: none; }

.modal {
  background: transparent;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow-y: auto;
  position: relative;
  padding: 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.modal__close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(0, 0, 0, 0.6); border: 1px solid #444;
  color: #999; font-size: 22px;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 110;
}

.modal__close:hover { color: #fff; background: rgba(0, 0, 0, 0.8); border-color: #666; }

.modal__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #444;
  color: #999; font-size: 20px;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 110;
}

.modal__nav:hover {
  color: #fff;
  border-color: var(--right-accent);
  background: rgba(106, 158, 138, 0.15);
}

.modal__nav--prev { left: 20px; }
.modal__nav--next { right: 20px; }

/* Mix modal */
.mix-detail__title {
  font-family: var(--font-serif);
  color: #e0d8d0;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  font-style: italic;
}

.mix-detail__description {
  color: #808080;
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1e1e1e;
}

.mix-detail__tracklist { list-style: none; }

.mix-detail__track {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  display: flex; gap: 16px;
  font-size: 10px;
  transition: background 0.2s;
}

.mix-detail__track:hover {
  background: var(--left-accent-subtle);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 3px;
}

.mix-detail__track-time {
  color: var(--left-accent);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  opacity: 0.6;
}

.mix-detail__track-title { color: #888; }

/* Photo modal */
.photo-detail { text-align: center; }

.photo-detail__image {
  max-width: 100%; max-height: 80vh;
  border-radius: 3px;
  margin-bottom: 16px;
}

.photo-detail__date {
  font-family: var(--font-hand);
  color: var(--right-accent);
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.photo-detail__caption {
  font-family: var(--font-serif);
  color: #b0a898;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  max-width: 480px;
  margin: 0 auto;
}

/* === Mobile === */
@media (max-width: 768px) {
  body { padding: 0; }
  .eq-surface {
    grid-template-columns: 1fr;
    border-radius: 0;
    min-height: auto;
  }
  .eq-half--left { border-right: none; border-bottom: 1px solid #222; border-radius: 0; }
  .eq-half--right { border-left: none; border-top: 1px solid #222; border-radius: 0; }
  .eq-center { order: -1; min-height: 280px; padding: 24px; }
  .turntable { max-width: 260px; }
  .eq-transport { border-radius: 0; gap: 8px; padding: 0 12px; }
  .transport__info { display: none; }
  .transport__emoji { gap: 4px; }
  .emoji-btn { font-size: 14px; }
  .modal { padding: 20px 16px; }
  .modal__nav--prev { left: 8px; }
  .modal__nav--next { right: 8px; }
  .modal__nav { width: 36px; height: 36px; }
  .modal__close { top: 12px; right: 12px; }
}
