/* ===================================================
   SELL & JENES — Style
   Palette:
   --night:   #0D1117  (background deep)
   --coal:    #161B22  (card background)
   --amber:   #D4892A  (accent / guitar gold)
   --cream:   #F0EDE6  (primary text)
   --muted:   #8B949E  (secondary text)
   --tint:    #111820  (tinted section bg)
   =================================================== */

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

:root {
  --night:  #0D1117;
  --coal:   #161B22;
  --amber:  #D4892A;
  --amber-light: #E8A84A;
  --cream:  #F0EDE6;
  --muted:  #8B949E;
  --tint:   #111820;
  --border: rgba(212, 137, 42, 0.18);
  --radius: 6px;
  --max-w: 1100px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--night);
  color: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--amber); color: var(--night); }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--amber); }

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--amber); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--amber);
  display: inline-block;
  font-size: 0.7em;
  vertical-align: middle;
  margin: 0 0.08em;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--amber);
  z-index: 2;
  animation: bounceY 2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--amber);
  color: var(--night);
}
.btn--primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 137, 42, 0.35);
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--coal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--tinted {
  background: var(--tint);
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section__eyebrow--light { color: var(--amber-light); }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.section__title--light { color: var(--cream); }

.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}
.about__text strong { color: var(--cream); font-weight: 600; }
.about__text em { color: var(--amber); font-style: normal; }

.about__instruments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.instrument-card {
  background: var(--coal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.instrument-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}
.instrument-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.instrument-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.instrument-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   TRACKS
══════════════════════════════════════════ */
.tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.track-tag {
  background: rgba(212, 137, 42, 0.1);
  border: 1px solid rgba(212, 137, 42, 0.3);
  color: var(--amber-light);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}
.track-tag:hover {
  background: rgba(212, 137, 42, 0.2);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   MEMBERS
══════════════════════════════════════════ */
.members__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.member-card {
  background: var(--coal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 180px;
  flex-shrink: 0;
  transition: border-color var(--transition), transform var(--transition);
}
.member-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.member-card__avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, #8B4513 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--night);
  margin: 0 auto 1rem;
  letter-spacing: 0.04em;
}

.member-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.member-card__role {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   GIGS
══════════════════════════════════════════ */
.gigs__list {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gig-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--coal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.gig-item:hover { border-color: var(--amber); }

.gig-item__date {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber);
}
.gig-item__venue {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}
.gig-item__location {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}
.gig-item--placeholder .gig-item__venue { color: var(--muted); font-style: italic; }

.gigs__contact {
  font-size: 0.9rem;
  color: var(--muted);
}
.gigs__contact a {
  color: var(--amber);
  text-decoration: none;
}
.gigs__contact a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-form {
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--coal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139, 148, 158, 0.5); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 137, 42, 0.12);
}

.form__note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--amber);
  min-height: 1.2em;
}
.form__note--error { color: #cf6679; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #080B0F;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.footer__logo span { color: var(--amber); }

.footer__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.footer__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--amber); }

.footer__legal {
  font-size: 0.78rem;
  color: rgba(139,148,158,0.5);
  margin-bottom: 0.5rem;
}
.footer__legal a { color: inherit; text-decoration: none; }
.footer__legal a:hover { color: var(--muted); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(139,148,158,0.4);
}

/* ══════════════════════════════════════════
   ANIMATIONS / SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__instruments { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

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

  .gig-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .gig-item__location { text-align: left; }

  .member-card { width: 150px; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .about__instruments { grid-template-columns: 1fr; }
  .members__grid { gap: 0.75rem; }
  .member-card { width: calc(50% - 0.4rem); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
