/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --ink: #17171a;
  --muted: #6b6b70;
  --line: #e7e6e2;
  --accent: #a97142;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg) url('tint.jpg') repeat;
  background-size: 900px auto;
  line-height: 1.6;
  font-weight: 300;
}

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

ul { list-style: none; }

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

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
}

.nav__links a:hover { color: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6vw;
  position: relative;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  margin-bottom: 24px;
}

.hero__tagline {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  font-size: 1.2rem;
  color: var(--muted);
  animation: bounce 2.2s infinite;
}

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

/* ---------- Sections ---------- */
.section {
  padding: 140px 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  max-width: 620px;
  margin-bottom: 70px;
}

.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 18px;
}

.section__intro {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Music / Tracks ---------- */
.tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

.track__embed {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.track__placeholder {
  height: 120px;
  background: #f4f3f0;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track__play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  padding-left: 3px;
}

.track__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.track__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.track__info h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.track__info p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- About ---------- */
.section--about {
  background: #faf9f7;
  border-radius: 24px;
  max-width: 1200px;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about__placeholder {
  aspect-ratio: 4 / 5;
  background: #ece9e3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about__list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.about__list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ---------- Contact ---------- */
.contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__email {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}

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

.contact__socials {
  display: flex;
  gap: 30px;
}

.contact__socials a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
}

.contact__socials a:hover { color: var(--ink); }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 40px 6vw;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--line);
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__placeholder {
    aspect-ratio: 16 / 9;
  }
  .tracks {
    grid-template-columns: 1fr;
  }
  .videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 70vw;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }
  .nav__links.open {
    transform: translateX(0);
  }
  .nav__toggle { display: flex; }
  .section { padding: 100px 6vw; }
}
