/* ============================================
   MELODY LIMNOS — Global Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* Room for sticky player bar at bottom */
  padding-bottom: var(--player-h);
}

@media (max-width: 768px) {
  body {
    padding-bottom: var(--player-h-mob);
  }
}

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

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

ul { list-style: none; }

button {
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

input, textarea, select {
  font-family: 'DM Sans', sans-serif;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
}

.section-body--light {
  color: rgba(255,255,255,0.6);
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 1.5rem;
}

@media (max-width: 480px) {
  section { padding: 3.5rem 1.2rem; }
}
