/* ── VARIABLES ── */
:root {
  --primary: #5a8f7b;
  --primary-dark: #3d6b59;
  --accent: #8ec5b0;
  --warm: #c8b49a;
  --sand: #c8b49a;
  --dark: #0e1210;
  --dark2: #151f1b;
  --off-white: #f0f5f2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(14,18,16,0.9), transparent);
  backdrop-filter: blur(4px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--warm);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--dark2);
  padding: 6rem 2rem 3rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.nav-drawer.is-open {
  transform: translateY(0);
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--accent); }

/* ── SECTION BASE ── */
section {
  padding: 7rem 3rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 2rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 1.2rem 0 2rem;
}

.divider--centered {
  margin: 1rem auto 2rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero buttons use the fade-up animation; other buttons don't */
.btn-primary--animated {
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.btn-outline {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--warm);
  color: var(--warm);
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(90,143,123,0.2) 0%, transparent 50%),
    linear-gradient(to top, rgba(14,18,16,0.97) 0%, rgba(14,18,16,0.45) 50%, rgba(14,18,16,0.2) 100%),
    url('https://sammatthewmusic.neocities.org/images/1920x1080_hero.jpg') center / cover no-repeat;
}

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

.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(90,143,123,0.12));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 900px;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--off-white);
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--warm);
  margin-top: 0.6rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BIO ── */
#bio {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.bio-visual {
  position: relative;
}

.bio-img-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.bio-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}

.bio-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom right, rgba(90,143,123,0.35), transparent 60%);
}

.bio-stat-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: var(--dark);
  padding: 1.5rem;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
}

.bio-stat-badge .number {
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}

.bio-stat-badge .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.bio-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm);
  font-weight: 300;
}

.bio-text p strong {
  color: var(--off-white);
  font-weight: 500;
}

/* ── OFFERS ── */
#offers {
  background: linear-gradient(135deg, #070e0b 0%, var(--dark) 100%);
}

.offers-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* New 4-card grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.offer-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(142,197,176,0.15);
  background: rgba(255,255,255,0.02);
  padding: 2.5rem 2rem;
  transition: border-color 0.25s, transform 0.25s;
}

.offer-card-v2:hover {
  border-color: rgba(142,197,176,0.4);
  transform: translateY(-4px);
}

.offer-card-v2-top {
  margin-bottom: 1.2rem;
}

.offer-card-v2-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.offer-card-v2-price {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
}

.offer-card-v2-per {
  font-size: 1rem;
  color: rgba(142,197,176,0.7);
}

.offer-card-v2-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--warm);
  font-weight: 300;
  margin-bottom: 1.5rem;
  flex: 1;
}

.offer-card-v2-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.offer-card-v2-features li {
  font-size: 0.82rem;
  color: var(--off-white);
  padding-left: 1.4rem;
  position: relative;
}

.offer-card-v2-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.offer-card-v2-cta {
  align-self: flex-start;
  margin-top: auto;
}

/* Coming Soon card */
.offer-card-v2--coming-soon {
  opacity: 0.55;
  border-style: dashed;
  border-color: rgba(142,197,176,0.2);
  pointer-events: none;
}

.offer-card-v2--coming-soon:hover {
  transform: none;
  border-color: rgba(142,197,176,0.2);
}

.offer-card-v2-coming-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(142,197,176,0.12);
  border: 1px solid rgba(142,197,176,0.3);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.4rem;
  align-self: flex-start;
}

.offer-card-v2-cta--disabled {
  background: rgba(90,143,123,0.3);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── CATALOG ── */
#catalog {
  max-width: 1400px;
  margin: 0 auto;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.artist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.artist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 120px;
  cursor: default;
}

.artist-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(142,197,176,0.2);
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, transform 0.25s;
}

.artist-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.25s;
}

.artist-circle .initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: rgba(142,197,176,0.5);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.artist-circle--cta {
  border-color: rgba(142,197,176,0.5);
  background: rgba(90,143,123,0.15);
}

.initials--cta {
  font-size: 1.4rem;
  color: var(--accent);
}

.artist-item:hover .artist-circle {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.artist-item:hover .artist-circle img { filter: grayscale(0%); }
.artist-item:hover .initials { color: var(--accent); }

.artist-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--off-white);
  letter-spacing: 0.03em;
}

.artist-genre {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(142,197,176,0.5);
  text-align: center;
  margin-top: -0.4rem;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--primary-dark);
  padding: 5rem 0;
  overflow: hidden;
}

.testimonials-header {
  padding: 0 3rem;
  margin-bottom: 3rem;
}

.testimonials-header .section-title { color: #fff; }
.testimonials-header .section-label { color: var(--accent); }

.ticker-wrap {
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--primary-dark), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--primary-dark), transparent);
}

.ticker {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tcard {
  flex-shrink: 0;
  width: 400px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem 2.2rem;
}

.tcard-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.tcard-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.tcard-stars {
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

/* ── CONTACT ── */
#contact {
  text-align: center;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-intro {
  color: var(--sand);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(142,197,176,0.1);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(142,197,176,0.4);
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(142,197,176,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }

  section {
    padding: 5rem 1.5rem;
  }

  #bio {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-bg {
    background-position: 70% center;
  }

  .bio-stat-badge {
    right: 0;
    bottom: -1rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}