:root {
  --accent: #d15254;
  --ink: #23282d;
  --tan: #f2dcb9;
  --navy: #13182c;
  --deep: #141722;
  --muted: #777;
  --line: rgba(117, 117, 117, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 86px;
  padding: 0 48px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.logo img { width: 121px; }
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
nav a:hover, .icons span:hover, h2 span, .event:hover b { color: var(--accent); }
.icons { display: flex; gap: 16px; font: 700 13px Oswald, sans-serif; }
.menu { display: none; background: none; border: 0; padding: 9px; }
.menu span { display: block; width: 25px; height: 2px; margin: 5px 0; background: #000; }

.hero {
  position: relative;
  min-height: 868px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f8f5f1;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 60px;
}
.artist-fill {
  width: fit-content;
  margin-bottom: 6px;
  font-size: clamp(70px, 14.5vw, 180px);
  line-height: .9;
  font-weight: 800;
  color: transparent;
  background: url("assets/artist_girl.jpg") center / cover;
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy p {
  margin: 0 0 28px;
  font-size: 35px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 3px;
}
.hero-copy a, .more, .album-buttons a, form button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 40px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .25s ease;
}
.hero-copy a:hover, .more:hover, .album-buttons a:hover, form button:hover { background: transparent; color: var(--accent); }

.player-band { padding: 80px 24px; }
.player {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  width: min(930px, 100%);
  margin: 0 auto;
}
.player img { width: 170px; height: 170px; object-fit: cover; }
.player-body { display: grid; align-content: center; gap: 16px; }
.controls { display: flex; gap: 18px; color: #545454; font-size: 23px; }
.controls .play { color: var(--accent); }
.wave { display: flex; align-items: center; gap: 5px; height: 48px; }
.wave i { display: block; width: 13px; background: #d17576; opacity: .72; }
.wave i:nth-child(odd) { height: 42px; }
.wave i:nth-child(even) { height: 24px; }
.tracks { display: grid; gap: 9px; color: #555; }
.tracks button { padding: 0; border: 0; background: none; color: inherit; text-align: left; cursor: pointer; }
.tracks span { margin-right: 12px; color: var(--accent); }

.section { padding: 90px 24px; text-align: center; }
.section h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
}
.section h4 {
  margin: 8px 0 56px;
  color: #747474;
  font: 400 22px Oswald, sans-serif;
}
.tan { background: var(--tan); }
.navy { background: var(--navy); color: #fff; }
.navy h4 { color: #bcbcbc; }

.event-list { width: min(1110px, 100%); margin: 0 auto; border-top: 1px solid var(--line); text-align: left; }
.event {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr 1.2fr auto;
  gap: 26px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}
.event time { position: relative; color: #565656; font-weight: 700; text-transform: lowercase; }
.event time strong {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(35,40,45,.1);
  font-size: 82px;
  line-height: 1;
}
.event span { color: #555; }
.event b { font-size: 18px; text-transform: uppercase; transition: color .2s ease; }
.event em { color: var(--accent); font-style: normal; font-weight: 700; }

.album-wrap { display: grid; justify-items: center; gap: 32px; }
.album-wrap img { width: min(420px, 80vw); box-shadow: 0 16px 40px rgba(0,0,0,.14); }
.album-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.album-buttons a { padding-inline: 18px; background: #fff; color: #333; border-color: #ddd; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  width: min(1180px, 100%);
  margin: 0 auto 36px;
}
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; filter: saturate(.88); }
.gallery-grid img:nth-child(4) { grid-column: span 2; }
.gallery-grid img:hover { filter: saturate(1.05); }
.more { background: transparent; border-color: #fff; color: #fff; }

.video { background: #fff; }
.video-box { position: relative; width: min(898px, 100%); margin: 0 auto; }
.video-box img { width: 100%; }
.video-box::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.12); }
.video-box button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: rgba(209,82,84,.62);
  color: #fff;
  font: 400 0/1 Oswald, sans-serif;
  cursor: pointer;
}
.video-box button span { font-size: 27px; line-height: 1; }

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(1110px, 100%);
  margin: 0 auto;
  text-align: left;
}
.post { background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.post.no-image { background: var(--deep); color: #fff; }
.post img { width: 100%; aspect-ratio: 1.6 / 1; object-fit: cover; }
.post.tall img { aspect-ratio: .74 / 1; }
.post div { padding: 28px; }
.post h3 { margin: 0 0 12px; font: 700 22px Oswald, sans-serif; text-transform: uppercase; }
.post p { color: #777; }
.post.no-image p { color: #c9c9c9; }
.post a { color: var(--accent); font-weight: 700; text-transform: uppercase; }

.contact form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(960px, 100%);
  margin: 0 auto;
}
input, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(131,142,164,.4);
  background: transparent;
  color: #fff;
  outline: 0;
}
input::placeholder, textarea::placeholder { color: #838ea4; }
input:focus, textarea:focus { border-color: #f5034a; }
textarea, form button { grid-column: 1 / -1; }
form button { justify-self: start; background: transparent; border-color: #fff; }

footer {
  position: relative;
  overflow: hidden;
  background: #090c18;
  color: #d6d6d6;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(9,12,24,.95), rgba(9,12,24,.95)), url("assets/artist_girl.jpg") center / cover;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr 1.15fr;
  gap: 38px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}
footer h3 { color: #fff; font: 700 20px Oswald, sans-serif; text-transform: uppercase; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 11px; }
.mini-events li { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; }
.mini-events b { grid-row: span 2; color: var(--accent); font-size: 28px; line-height: 1; }
.mini-events span, .latest span { display: block; color: #8d8d8d; font-size: 12px; text-transform: uppercase; }
.latest li { display: grid; grid-template-columns: 55px 1fr; gap: 10px; align-items: center; }
.latest img, .latest div { width: 55px; height: 55px; object-fit: cover; background: #252a3a; color: #fff; font-size: 11px; display: grid; place-items: center; }
.latest span { grid-column: 2; margin-top: -14px; }
.copy {
  position: relative;
  margin: 0;
  padding: 24px;
  background: #f3f1f2;
  color: #333;
  text-align: center;
}

@media (max-width: 980px) {
  .header { grid-template-columns: 150px auto; padding: 0 22px; }
  .menu { display: block; justify-self: end; }
  nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 8px 24px 24px;
  }
  nav.open { display: flex; }
  nav a { padding: 12px 0; border-bottom: 1px solid #eee; }
  .icons { display: none; }
  .event, .player, .posts, .contact form, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 620px) {
  .hero { min-height: 720px; }
  .hero-copy { width: calc(100% - 30px); }
  .hero-copy p { font-size: 18px; line-height: 1.25; }
  .section { padding: 70px 15px; }
  .event { gap: 8px; padding: 22px 0; }
  .player { justify-items: center; text-align: center; }
  .controls, .wave { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
}
