/* ============================================================
   AUDIO WARFARE STUDIOS — style.css
   ============================================================ */

/* --- CUSTOM PROPERTIES ------------------------------------ */
:root {
  --black:      #0a0a0a;
  --green:      #6ee89e;
  --green-dim:  #3a7a56;
  --white:      #e8e8e8;
  --glass:      rgba(10, 10, 10, 0.96);

  /* Bitcount Prop Single — display: titles, dock, boot, clock  */
  /* DotGothic16 — body: window copy, form fields              */
  --font-display: 'Bitcount Prop Single', monospace;
  --font-body:    'DotGothic16', monospace;

  --dock-h:       72px;
  --titlebar-h:   36px;
  --window-min-w: 320px;
}

/* --- RESET & BASE ----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}

button {
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* --- BOOT SCREEN ------------------------------------------ */
.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10vw;
}

.boot-lines {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 22px);
  color: var(--green);
  line-height: 2;
  white-space: pre-wrap;
}

.boot-line {
  display: block;
  min-height: 1em;
}

.boot-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 52vw, 480px);
  color: var(--green);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.boot-skip {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-dim);
  letter-spacing: 0.05em;
  border: 1px solid var(--green-dim);
  padding: 4px 20px;
  transition: color 0.15s, border-color 0.15s;
}

.boot-skip:hover {
  color: var(--green);
  border-color: var(--green);
}

@keyframes boot-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.boot-screen.boot-fade-out {
  animation: boot-fade-out 400ms ease-out forwards;
}

.boot-screen.is-hidden { display: none; }

/* --- DESKTOP ---------------------------------------------- */
.desktop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
}

@keyframes desktop-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.desktop.desktop-fade-in {
  animation: desktop-fade-in 500ms ease-out forwards;
}

/* --- DESKTOP BACKGROUND ----------------------------------- */
.desktop-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
}

.unicorn-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.unicorn-wrap > div,
.unicorn-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none !important;
}

.desktop-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* --- CANVAS BACKGROUND ------------------------------------ */
canvas.desktop-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Mobile fallback — canvas disabled, CSS dot pattern instead */
body.no-canvas .desktop-bg {
  background-image:
    radial-gradient(circle, rgba(110,232,158,0.12) 1px, transparent 1px),
    url('assets/Timeline 1_01_00_14_23.jpg');
  background-size: 24px 24px, cover;
}

/* --- DESKTOP LOGO ----------------------------------------- */
.desktop-logo {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 140px;
  opacity: 0.88;
  pointer-events: none;
  z-index: 10;
}

/* --- WINDOWS — base --------------------------------------- */
.window {
  position: absolute;
  min-width: var(--window-min-w);
  max-height: calc(100vh - var(--dock-h) - 36px);
  background: var(--glass);
  border: 1px solid var(--green);
  display: none;
  flex-direction: column;
  box-shadow:
    0 0 0 1px var(--black),
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(110, 232, 158, 0.14),
    0 0 80px rgba(110, 232, 158, 0.05),
    inset 0 1px 0 rgba(110, 232, 158, 0.12);
  user-select: none;
}

#window-records  { width: 560px; }
#window-about    { width: 460px; }
#window-services { width: 440px; }
#window-contact  { width: 380px; }

.window.is-open { display: flex; }

@keyframes window-open {
  from { opacity: 0; transform: scale(0.96) translateY(6px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.window.is-open {
  animation: window-open 150ms ease-out both;
}

@keyframes window-close {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.97); }
}

.window.is-closing {
  display: flex;
  animation: window-close 100ms ease-in both;
}

/* --- WINDOW TITLEBAR -------------------------------------- */
.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--titlebar-h);
  padding: 0 10px 0 14px;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(110, 232, 158, 0.06) 0px,
      rgba(110, 232, 158, 0.06) 1px,
      transparent 1px,
      transparent 3px
    ),
    rgba(110, 232, 158, 0.10);
  border-bottom: 1px solid var(--green-dim);
  cursor: grab;
  flex-shrink: 0;
}

.window-titlebar:active { cursor: grabbing; }

.window-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--green);
  letter-spacing: 0.06em;
  line-height: 1;
}

.window-title-icon {
  color: var(--green);
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
}

.window-title-icon svg {
  width: 14px;
  height: 14px;
}

.window-close {
  font-size: 13px;
  color: var(--green-dim);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: color 0.1s, border-color 0.1s, background 0.1s;
  flex-shrink: 0;
}

.window-close:hover {
  color: var(--green);
  border-color: var(--green-dim);
  background: rgba(110, 232, 158, 0.08);
}

.window-close:active {
  background: rgba(110, 232, 158, 0.15);
}

/* --- WINDOW BODY ------------------------------------------ */
.window-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  scrollbar-width: thin;
  scrollbar-color: var(--green-dim) transparent;
}

.window-body::-webkit-scrollbar       { width: 4px; }
.window-body::-webkit-scrollbar-track  { background: transparent; }
.window-body::-webkit-scrollbar-thumb  { background: var(--green-dim); }

/* --- DOCK ------------------------------------------------- */
.taskbar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;

  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;

  background: rgba(10, 10, 10, 0.92);
  border: 1px solid var(--green-dim);
  border-top-color: rgba(110, 232, 158, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 2px  8px rgba(0, 0, 0, 0.5),
    0 0   36px rgba(110, 232, 158, 0.09),
    inset 0 1px 0 rgba(110, 232, 158, 0.06);
}

/* --- DOCK BUTTONS ----------------------------------------- */
.taskbar-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 16px 4px;
  color: var(--green-dim);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.taskbar-btn:hover {
  color: var(--green);
  background: rgba(110, 232, 158, 0.06);
}

.taskbar-btn.is-active {
  color: var(--green);
  background: rgba(110, 232, 158, 0.07);
}

.taskbar-icon {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.taskbar-icon svg {
  width: 20px;
  height: 20px;
}

.taskbar-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.taskbar-indicator {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.15s;
}

.taskbar-btn.is-active .taskbar-indicator { opacity: 1; }

/* --- DESKTOP CLOCK (bottom-right, outside dock) ----------- */
.desktop-clock-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
}

.taskbar-clock {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* --- TUNER TOGGLE (bottom-left, mirrors the clock) -------- */
.desktop-tuner-wrap {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 500;
}

.tuner-toggle {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.15s;
}

.tuner-toggle:hover { color: var(--green); }

/* --- TUNER WINDOW ---------------------------------------- */
#window-tuner { width: 360px; min-height: 380px; }

.tuner-window-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tuner-idle,
.tuner-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.tuner-idle[hidden],
.tuner-live[hidden] { display: none; }

.tuner-intro {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.8;
  text-align: center;
  line-height: 1.5;
}

.tuner-activate,
.tuner-stop {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  color: var(--green);
  border: 1px solid var(--green-dim);
  background: rgba(110, 232, 158, 0.05);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.tuner-activate:hover,
.tuner-stop:hover {
  color: var(--green);
  border-color: var(--green);
  background: rgba(110, 232, 158, 0.12);
}

.tuner-activate:active,
.tuner-stop:active { background: rgba(110, 232, 158, 0.2); }

.tuner-permnote {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--green-dim);
  text-align: center;
}

.tuner-note-display {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 84px);
  color: var(--green);
  line-height: 1;
  transition: text-shadow 0.15s, color 0.15s;
}

.tuner-note-display.is-intune {
  text-shadow: 0 0 22px rgba(110, 232, 158, 0.6);
}

.tuner-bar {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--green-dim);
  white-space: pre;
  transition: color 0.15s;
}

.tuner-bar.is-intune { color: var(--green); }

.tuner-cents {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.8;
}

.tuner-flavour {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--green);
  min-height: 1.4em;
  text-align: center;
}

.tuner-input {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green-dim);
}

.tuner-input-bar {
  color: var(--green);
  letter-spacing: 1px;
  white-space: pre;
}

/* --- CONTACT WINDOW --------------------------------------- */
#window-contact { min-height: 500px; }

.contact-window-body {
  padding: 24px;
  overflow-y: auto;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--green);
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.contact-field label {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dim);
}

.contact-field input,
.contact-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--green-dim);
  padding: 8px 10px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  width: 100%;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--green);
  background: rgba(110, 232, 158, 0.04);
  box-shadow: 0 0 0 2px rgba(110, 232, 158, 0.08);
}

.contact-field textarea {
  resize: none;
  line-height: 1.6;
}

.contact-submit {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.contact-submit:hover  { background: #8ef5b8; }
.contact-submit:active { transform: scale(0.98); }

.contact-divider {
  height: 1px;
  background: var(--green-dim);
  opacity: 0.4;
  margin: 22px 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-link {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--green-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.contact-link:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--green-dim);
}

.contact-success {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--green);
  letter-spacing: 0.05em;
  padding: 20px 0;
}

/* --- SERVICES WINDOW -------------------------------------- */
#window-services { min-height: 480px; }

.services-window-body {
  padding: 0 !important;
  overflow-y: auto;
}

.service-block {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(58, 122, 86, 0.3);
}

.service-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dim);
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--green-dim);
}

.service-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green);
  line-height: 1.1;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: 0.75;
  line-height: 1.65;
  margin-top: 10px;
}

.services-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  margin: 4px 0;
}

.services-separator::before,
.services-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--green-dim);
  opacity: 0.5;
}

.services-separator-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dim);
  white-space: nowrap;
}

.services-cta-wrap {
  padding: 20px 24px;
}

.services-cta {
  display: block;
  width: 100%;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.services-cta:hover  { background: #8ef5b8; }
.services-cta:active { transform: scale(0.98); }

/* --- ABOUT WINDOW ----------------------------------------- */
#window-about { min-height: 520px; }

.about-window-body {
  padding: 0 !important;
  overflow-y: auto;
}

.about-hero iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
}

.about-copy {
  position: relative;
  padding: 24px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--green);
  line-height: 1.75;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(110, 232, 158, 0.045) 0px,
    rgba(110, 232, 158, 0.045) 1px,
    transparent 1px,
    transparent 9px
  );
}

.about-copy p + p { margin-top: 1.2em; }

/* --- RECORDS WINDOW --------------------------------------- */
.records-window-body {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
}

/* Grid */
.records-grid {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-dim) transparent;
}

.records-grid::-webkit-scrollbar       { width: 4px; }
.records-grid::-webkit-scrollbar-track  { background: transparent; }
.records-grid::-webkit-scrollbar-thumb  { background: var(--green-dim); }

/* Card */
.record-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.record-card:hover {
  background: rgba(110, 232, 158, 0.06);
  border-color: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.record-card.is-active {
  background: rgba(110, 232, 158, 0.08);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(110, 232, 158, 0.12);
}

.record-card-vinyl {
  opacity: 0.75;
  transition: opacity 0.15s;
}

.record-card-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  border: 1px solid rgba(110, 232, 158, 0.1);
}

.player-vinyl-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.record-card:hover .record-card-vinyl,
.record-card.is-active .record-card-vinyl { opacity: 1; }

.record-card-band {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green);
  line-height: 1.2;
}

.record-card-release {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white);
  line-height: 1.3;
  opacity: 0.8;
}

.record-card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--green-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Player panel */
.records-player {
  flex-shrink: 0;
  height: 172px;
  border-top: 1px solid var(--green-dim);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  transition: opacity 0.2s;
}

.records-player:not(.is-active) {
  opacity: 0.5;
}

.player-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  height: 100%;
}

.player-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.player-band {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--green);
  display: block;
}

.player-release {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white);
  opacity: 0.75;
  display: block;
}

.player-tag {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--green-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.player-embed {
  flex: 1;
  min-height: 0;
  border-radius: 4px;
  overflow: hidden;
}

.player-embed iframe {
  display: block;
  border-radius: 4px;
}

/* Spinning vinyl */
.player-vinyl {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.player-vinyl.is-spinning {
  opacity: 1;
  animation: vinyl-spin 4s linear infinite;
}

@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* --- REDUCED MOTION --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .window.is-open,
  .window.is-closing,
  .boot-screen.boot-fade-out,
  .desktop.desktop-fade-in { animation: none; }
  .desktop { opacity: 1; }
}

/* --- TABLET (768px–1024px) -------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
  .window { max-width: 90vw; }
}

/* --- MOBILE (< 768px) ------------------------------------- */
@media (max-width: 767px) {

  /* Scrollable page, no overflow clipping */
  html, body { overflow: auto; height: auto; }

  /* Desktop becomes a normal flow container */
  .desktop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 48px;
    opacity: 1 !important;
    overflow: visible;
    min-height: 100vh;
  }

  /* Hide dock, clock, tuner toggle, canvas */
  .taskbar          { display: none; }
  .desktop-clock-wrap { display: none; }
  .desktop-tuner-wrap { display: none; }
  canvas.desktop-canvas { display: none; }

  /* Logo centered at top */
  .desktop-logo {
    position: relative;
    top: auto;
    left: auto;
    width: 100px;
    margin: 0 auto 28px;
    display: block;
    opacity: 0.92;
  }

  /* Background pinned behind everything */
  .desktop-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
  }

  /* Windows: always visible, full-width, stacked, normal flow */
  .window {
    position: relative !important;
    display: flex !important;
    flex-direction: column;
    width: 92vw !important;
    max-width: 100%;
    max-height: none !important;
    left: auto !important;
    top: auto !important;
    margin: 0 0 20px 0;
    animation: none !important;
    z-index: 1 !important;
  }

  /* Hide close button — nowhere to close to */
  .window-close { display: none; }

  /* Records: 2-col grid, shorter player */
  .records-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow-y: visible;
    flex: none;
    padding: 16px;
  }

  .records-window-body { overflow: visible; }

  .records-player {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }

  .player-content { width: 100%; }

  .player-embed { height: 80px; }

  .player-vinyl { display: none; }

  /* About: reduce hero height */
  .about-hero iframe { height: 160px; }

  /* Contact: full width inputs */
  .contact-field input,
  .contact-field textarea { font-size: 16px; } /* prevent iOS zoom */

  /* Scroll fade-in */
  .window {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .window.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

