:root{
  --lavender:#b6a6ff;
  --mint:#62e6c5;
  --rose:#d07c8e;

  --bg:#1f1b2a;
  --stage:#2a2536;
  --text:#f2f0ff;
  --text-muted:rgba(242,240,255,.78);

  --panel:rgba(58,52,74,.92);
  --panel-top:rgba(242,240,255,.06);
  --border:rgba(242,240,255,.14);

  --shadow:0 18px 55px rgba(0,0,0,.45);
  --shadow-soft:0 12px 34px rgba(0,0,0,.30);

  --radius:18px;

  --font-head:"Space Grotesk",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --font-body:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  line-height:1.55;

  background:
    radial-gradient(circle at top,rgba(182,166,255,.12),transparent 30%),
    linear-gradient(180deg,#221d2f 0%,var(--bg) 40%,#17131f 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

/* ---------------- HEADER ---------------- */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(31,27,42,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(242,240,255,.1);
}

.nav{
  max-width:1100px;
  margin:auto;
  padding:14px 18px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.3rem;
}

.logo{
  height:68px;
}

.nav__links{
  list-style:none;
  display:flex;
  gap:18px;
  padding:0;
  margin:0;
  justify-content:center;
}

.nav__links li{
  position:relative;
}

.nav__links a{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(242,240,255,.82);
  font-weight:650;
}

.nav__links a:hover{
  background:rgba(242,240,255,.08);
}

/* dropdown */

.dropdown-menu{
  list-style:none;
  position:absolute;
  top:100%;
  left:0;
  min-width:210px;
  padding:8px;
  background:rgba(42,37,54,.98);
  border:1px solid rgba(242,240,255,.14);
  border-radius:14px;
  display:none;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
}

.dropdown-menu a:hover{
  background:rgba(242,240,255,.08);
}

/* ---------------- HERO ---------------- */

.stage{
  padding:80px 18px 90px;
  background-color:var(--stage);
}

.hero{
  max-width:1100px;
  margin:auto;
  border:1px solid rgba(242,240,255,.12);
  border-radius:22px;
  background:rgba(30,26,40,.85);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero__media{
  width:100%;
  height:320px;
  object-fit:cover;
}

.hero__content{
  padding:26px;
}

.hero h1{
  font-family:var(--font-head);
  font-size:clamp(2.2rem,5vw,4rem);
  margin:0 0 14px;
}

.hero__sub{
  color:var(--text-muted);
  max-width:60ch;
}

/* ---------------- BUTTONS ---------------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
}

.btn--primary{
  background:#0b0f14;
  color:white;
}

.btn--small{
  background:rgba(182,166,255,.18);
  border:1px solid rgba(182,166,255,.34);
}

/* ---------------- CARD GRID ---------------- */

.highlights{
  max-width:1100px;
  margin:70px auto 0;
}

.section-head{
  text-align:center;
  margin-bottom:20px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-soft);
}

.card__img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.card__top{
  padding:16px;
  border-bottom:1px solid rgba(242,240,255,.12);
}

.card__body{
  padding:14px 16px;
  flex-grow:1;
}

.card__actions{
  padding:14px 16px 18px;
  text-align:center;
}

/* ---------------- PAGE CONTENT ---------------- */

.page{
  max-width:800px;
  margin:auto;
  padding:40px 20px;
}

.page h1{
  font-family:var(--font-head);
  font-size:2.6rem;
}

.page h2{
  margin-top:40px;
  font-family:var(--font-head);
}

.page-intro{
  font-size:1.1rem;
  color:var(--text-muted);
}

/* ---------------- IMAGE STYLES ---------------- */

.about-image,
.sound-image,
.history-image,
.guitar-image{
  width:100%;
  max-width:900px;
  display:block;
  margin:30px auto;
  border-radius:16px;
  box-shadow:var(--shadow-soft);
}

.gear-image{
  width:70%;
  max-width:600px;
  display:block;
  margin:30px auto;
}

/* ---------------- PEDALS ---------------- */

.pedal-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:25px 0 55px;
}

.pedal-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(242,240,255,.1);
  border-radius:18px;
  padding:18px;
  text-align:center;
  box-shadow:var(--shadow-soft);
}

.pedal-card img{
  width:100%;
  height:180px;
  object-fit:contain;
  margin-bottom:14px;
}

/* ---------------- ALBUM GRID ---------------- */

.album-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.album img{
  width:100%;
  border-radius:10px;
}

/* ---------------- FOOTER ---------------- */

.site-footer{
  border-top:1px solid rgba(242,240,255,.1);
  background:rgba(31,27,42,.85);
}

.footer__inner{
  max-width:1100px;
  margin:auto;
  padding:22px;
  text-align:center;
  color:rgba(242,240,255,.7);
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:900px){

  .card-grid{
    grid-template-columns:1fr 1fr;
  }

  .pedal-cards{
    grid-template-columns:1fr;
  }

}

@media(max-width:560px){

  .nav{
    grid-template-columns:1fr;
    text-align:center;
  }

  .nav__links{
    flex-direction:column;
  }

  .card-grid{
    grid-template-columns:1fr;
  }

  .album-grid{
    grid-template-columns:1fr;
  }

}

.accent{
  background: linear-gradient(90deg, var(--lavender), var(--rose), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.here{
  background: linear-gradient(90deg, var(--lavender), var(--rose), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}