:root {
  --cream: #f4ead8;
  --paper: #fffaf1;
  --ink: #1d2926;
  --green: #204b3f;
  --acid: #e1ee72;
  --coral: #e8644b;
  --line: rgba(29, 41, 38, 0.22);
  --sans: "DM Sans", "Zen Kaku Gothic New", sans-serif;
  --jp: "Zen Kaku Gothic New", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 68px;
  padding: 0 20px;
  color: var(--paper);
  transition: background 0.25s, color 0.25s;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(244, 234, 216, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--cream);
  background: var(--coral);
  border-radius: 50%;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0;
}

.menu-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform 0.25s;
}

.menu-open .menu-button span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 68px 0 auto;
  display: grid;
  padding: 12px 20px 28px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transform: translateY(-130%);
  transition: transform 0.3s ease;
}

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

.site-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.45rem;
  font-weight: 600;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: #526c6d;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("assets/hero.jpg");
  background-position: 56% center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(15, 36, 33, 0.12) 20%, rgba(15, 36, 33, 0.82) 100%),
    linear-gradient(90deg, rgba(15, 36, 33, 0.24), transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 116px 20px 112px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--jp);
  font-size: clamp(1.9rem, 9.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  margin: 24px 0 0;
  font-family: var(--jp);
  font-size: 0.95rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 22px;
  border-radius: 100px;
  font-family: var(--jp);
  font-size: 0.86rem;
  font-weight: 700;
}

.button-primary {
  min-width: 210px;
  color: var(--ink);
  background: var(--acid);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-release {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: none;
  width: 275px;
  padding: 24px 28px;
  color: var(--ink);
  background: var(--acid);
}

.hero-release span,
.hero-release small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-release strong {
  display: block;
  margin: 12px 0 20px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.ticker {
  overflow: hidden;
  padding: 13px 0;
  color: var(--cream);
  background: var(--coral);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  animation: ticker 18s linear infinite;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ticker-track i {
  font-size: 1rem;
  font-style: normal;
}

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

.section {
  padding: 82px 20px;
  scroll-margin-top: 60px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.3rem, 15vw, 7.5rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  font-size: 0.75rem;
  font-weight: 600;
}

.news-item h3 {
  margin: 12px 0 8px;
  font-family: var(--jp);
  font-size: 1.08rem;
  line-height: 1.6;
}

.news-item p {
  margin: 0;
  color: rgba(29, 41, 38, 0.7);
  font-family: var(--jp);
  font-size: 0.78rem;
  line-height: 1.8;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  color: var(--cream);
  background: var(--green);
  border-radius: 100px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tag-coral {
  background: var(--coral);
}

.live-section {
  color: var(--cream);
  background: var(--green);
}

.live-section .eyebrow {
  color: var(--acid);
}

.live-list {
  margin-bottom: 28px;
  border-top: 1px solid rgba(244, 234, 216, 0.28);
}

.live-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(244, 234, 216, 0.28);
}

.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  padding: 8px 0;
  color: var(--ink);
  background: var(--acid);
}

.date-block span,
.date-block small {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.date-block strong {
  font-size: 2rem;
  line-height: 1.05;
}

.live-detail > p:first-child {
  margin: 0 38px 8px 0;
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.live-detail h3 {
  margin: 7px 35px 20px 0;
  font-family: var(--jp);
  font-size: 1.2rem;
}

.live-act {
  display: inline-block;
  padding: 3px 8px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 100px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.live-act-solo {
  color: var(--cream);
  background: var(--coral);
}

.live-detail dl {
  margin: 0;
}

.live-detail dl div {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  font-size: 0.66rem;
}

.live-detail dt {
  width: 78px;
  color: rgba(244, 234, 216, 0.58);
}

.live-detail dd {
  margin: 0;
}

.lineup {
  margin: 18px 0 0;
  color: rgba(244, 234, 216, 0.68);
  font-family: var(--jp);
  font-size: 0.68rem;
  line-height: 1.7;
}

.round-link {
  position: absolute;
  top: 28px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(244, 234, 216, 0.6);
  border-radius: 50%;
}

.button-outline {
  border: 1px solid rgba(244, 234, 216, 0.5);
}

.profile-section {
  padding: 0;
  background: var(--paper);
}

.profile-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  background:
    radial-gradient(circle at 25% 25%, rgba(225, 238, 114, 0.85) 0 18%, transparent 19%),
    radial-gradient(circle at 80% 70%, rgba(232, 100, 75, 0.8) 0 24%, transparent 25%),
    linear-gradient(145deg, #8eaead, #426a63);
}

.profile-stamp {
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  align-content: center;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.profile-stamp span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.profile-stamp strong {
  margin: 8px 0;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.profile-copy {
  padding: 72px 20px;
}

.profile-copy .lead {
  margin: 0 0 22px;
  font-family: var(--jp);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.75;
}

.profile-copy > p:not(.lead) {
  margin: 0;
  color: rgba(29, 41, 38, 0.72);
  font-family: var(--jp);
  font-size: 0.82rem;
  line-height: 2;
}

.members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.members li {
  display: flex;
  flex-direction: column;
  padding: 17px 8px 17px 0;
  border-bottom: 1px solid var(--line);
}

.members li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.members li:nth-child(even) {
  padding-left: 16px;
}

.members span,
.members small {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.members strong {
  margin: 6px 0 1px;
  font-family: var(--jp);
  font-size: 0.9rem;
}

.members small {
  color: rgba(29, 41, 38, 0.55);
}

.member-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 10px;
}

.member-socials a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.music-section {
  background: var(--cream);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.release-card {
  display: block;
}

.album-art {
  aspect-ratio: 1;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.album-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card:hover .album-art {
  transform: rotate(-1deg) scale(0.985);
}

.release-info {
  position: relative;
  padding: 17px 0 0;
}

.release-info small {
  color: rgba(29, 41, 38, 0.56);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.release-info h3 {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.release-info > span {
  display: block;
  margin-top: 9px;
  font-size: 0.65rem;
  font-weight: 700;
}

.discography-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discography-link span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.discography-link small {
  color: rgba(29, 41, 38, 0.56);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.discography-link strong {
  font-family: var(--jp);
  font-size: 1.1rem;
}

.discography-link i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  transition: transform 0.25s ease;
}

.discography-link:hover i {
  transform: translateX(4px);
}

.contact-section {
  padding: 84px 20px;
  color: var(--cream);
  background: var(--coral);
  scroll-margin-top: 60px;
}

.contact-section h2 {
  margin: 0 0 42px;
  font-family: var(--jp);
  font-size: clamp(2rem, 9.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 234, 216, 0.45);
  border-bottom: 1px solid rgba(244, 234, 216, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 34px;
}

.social-links a {
  padding: 12px 0;
  font-size: 0.68rem;
  font-weight: 700;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 20px;
  color: var(--cream);
  background: var(--ink);
}

footer p,
footer > a:last-child {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.footer-brand {
  width: 100%;
}

@media (min-width: 720px) {
  .site-header {
    height: 82px;
    padding: 0 5vw;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 30px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    transform: none;
  }

  .site-nav a {
    padding: 6px 0;
    border: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-content {
    padding: 150px 5vw 10vh;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6.8rem);
    line-height: 1.18;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-release {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  .section {
    padding: 120px 7vw;
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .news-item {
    grid-template-columns: 160px 1fr;
    padding: 35px 0;
  }

  .news-item h3 {
    font-size: 1.3rem;
  }

  .live-card {
    grid-template-columns: 95px 1fr 50px;
    gap: 40px;
    align-items: center;
    padding: 38px 0;
  }

  .date-block {
    padding: 12px 0;
  }

  .date-block strong {
    font-size: 2.7rem;
  }

  .live-detail {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) 1fr;
    column-gap: 40px;
  }

  .live-detail > p:first-child,
  .live-detail .live-act,
  .live-detail h3 {
    grid-column: 1;
  }

  .live-detail .live-act {
    justify-self: start;
  }

  .live-detail dl {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .lineup {
    grid-column: 1 / span 2;
  }

  .round-link {
    position: static;
    width: 46px;
    height: 46px;
  }

  .profile-section {
    display: grid;
    grid-template-columns: 45% 55%;
  }

  .profile-visual {
    min-height: 800px;
  }

  .profile-copy {
    padding: 120px 8vw;
  }

  .profile-copy .lead {
    font-size: 1.65rem;
  }

  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 430px));
    gap: 4vw;
  }

  .release-info h3 {
    font-size: 1.1rem;
  }

  .discography-link {
    margin-top: 80px;
    padding: 28px 0;
  }

  .discography-link strong {
    font-size: 1.45rem;
  }

  .discography-link i {
    width: 58px;
    height: 58px;
  }

  .contact-section {
    padding: 120px 7vw;
  }

  .contact-mail {
    font-size: 1.15rem;
  }

  .social-links {
    display: flex;
    gap: 45px;
  }

  footer {
    padding: 34px 5vw;
  }

  .footer-brand {
    width: auto;
  }
}

@media (min-width: 1200px) {
  .hero-content,
  .site-header {
    padding-left: max(5vw, calc((100vw - 1440px) / 2));
    padding-right: max(5vw, calc((100vw - 1440px) / 2));
  }

  .section,
  .contact-section {
    padding-left: max(7vw, calc((100vw - 1280px) / 2));
    padding-right: max(7vw, calc((100vw - 1280px) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
