:root {
  --blue: #4f789b;
  --deep-blue: #315f84;
  --ink: #314150;
  --cream: #fff8f3;
  --soft: #f5ebe5;
  --line: rgba(49, 65, 80, .16);
  --shadow: 0 24px 70px rgba(49, 65, 80, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

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

.site-hero {
  min-height: 68svh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(245, 248, 250, .6), rgba(245, 248, 250, .1)),
    url("assets/hero-lake.png") center / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.site-nav {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  position: relative;
  z-index: 5;
}

.brand {
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  letter-spacing: .35em;
  font-weight: 300;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .04em;
  font-weight: 500;
}

.nav-links a {
  padding-block: 8px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links .active { border-color: currentColor; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(79, 120, 155, .45);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.hero-copy {
  width: min(1220px, calc(100% - 40px));
  margin: auto auto 11vh;
  color: var(--blue);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}

.hero-copy p {
  max-width: 560px;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  margin: 0 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .04em;
  border: 1px solid var(--blue);
}

.button.filled {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 34px rgba(49, 95, 132, .22);
}

.button.outline {
  color: var(--blue);
  background: rgba(255,255,255,.28);
}

.button.small { min-height: 42px; }

.section {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0;
}

.release {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}

.album-cover {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .9rem;
  font-weight: 600;
}

.release h2,
.shows h2,
.about h2 {
  color: var(--blue);
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 22px;
  font-weight: 300;
}

.release p,
.about p {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.show-list a {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr auto;
  gap: 24px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.show-list b {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 300;
}

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 7vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, rgba(245,235,229,.7), rgba(255,248,243,0));
}

.about img {
  width: 100%;
  border-radius: 10px;

}

.footer {
  background: var(--blue);
  color: white;
  padding: clamp(32px, 5vw, 48px) max(20px, calc((100vw - 1060px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.footer h2 {
  font-weight: 300;
  margin: 0 0 8px;
}

.footer p { margin: 0; }

.footer form {
  display: flex;
  gap: 10px;
  width: min(480px, 100%);
}

.footer input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  color: white;
  padding: 0 20px;
}

.footer input::placeholder { color: rgba(255,255,255,.74); }

.button.light {
  background: var(--cream);
  color: var(--blue);
  border-color: var(--cream);
}

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

@media (max-width: 760px) {
  .site-hero {
    min-height: 82svh;
    background-position: center bottom;
  }

  .site-nav {
    width: min(100% - 28px, 1220px);
  }

  .brand {
    letter-spacing: .25em;
  }

  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    inset: calc(100% - 12px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 248, 243, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 14px 4px;
  }

  .hero-copy {
    width: min(100% - 28px, 1220px);
    margin-bottom: 8vh;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .release,
  .about {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .show-list a {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .show-list time,
  .show-list span,
  .show-list strong {
    grid-column: 1;
  }

  .show-list b {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .footer form {
    flex-direction: column;
  }
}


.logo-image{
  width:220px;
  height:auto;
  display:block;
}

@media (max-width:768px){
  .logo-image{
    width:160px;
  }
}
