:root {
  --night: #061015;
  --midnight: #0b1a22;
  --deep: #102832;
  --harbor: #1a4d57;
  --gold: #d8b46a;
  --copper: #b85a43;
  --offwhite: #f2ead8;
  --muted: #aab7b4;
  --line: rgba(242, 234, 216, 0.14);
  --panel: rgba(255, 255, 255, 0.055);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--offwhite);
  background: var(--night);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: 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;
}

.nav {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(16px, 4vw, 48px);
  color: var(--offwhite);
  background: linear-gradient(180deg, rgba(6, 16, 21, 0.9), rgba(6, 16, 21, 0.42));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(242, 234, 216, 0.78);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 240ms ease, background-color 240ms ease;
}

.nav-links a:hover {
  color: var(--offwhite);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(242, 234, 216, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--offwhite);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 116px clamp(18px, 5vw, 76px) 88px;
  color: var(--offwhite);
  background: var(--night);
}

.hero-picture,
.hero-picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
  object-position: 48% top;
}

.hero-shade {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 214, 148, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(6, 16, 21, 0.04) 0%, rgba(6, 16, 21, 0.08) 42%, rgba(6, 16, 21, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 16, 21, 0.62), rgba(6, 16, 21, 0.14) 50%, rgba(6, 16, 21, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-left: clamp(54px, 8vw, 138px);
}

.hero-name {
  margin: 0 0 12px;
  color: rgba(242, 234, 216, 0.9);
  font-size: clamp(0.92rem, 2.6vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  width: min(720px, 100%);
  font-size: clamp(2.85rem, 9vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 5.4vw, 4rem);
  line-height: 1.04;
}

h3,
p {
  overflow-wrap: anywhere;
}

h3 {
  margin: 0;
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  line-height: 1.1;
}

.lead {
  width: min(560px, 100%);
  margin: 18px 0 0;
  color: rgba(242, 234, 216, 0.84);
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.button.primary {
  color: white;
  background: var(--copper);
  box-shadow: 0 16px 34px rgba(184, 90, 67, 0.22);
}

.button.ghost,
.button.ghost-dark {
  color: var(--offwhite);
  border: 1px solid rgba(242, 234, 216, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary:hover {
  background: #c6664e;
  box-shadow: 0 18px 38px rgba(184, 90, 67, 0.3);
}

.button.ghost:hover,
.button.ghost-dark:hover {
  border-color: rgba(242, 234, 216, 0.58);
  background: rgba(255, 255, 255, 0.13);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(242, 234, 216, 0.64);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  background:
    linear-gradient(180deg, #061015 0%, #0b1a22 18%, #061015 100%);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.section-head h2 {
  margin-top: 0;
}

.music-world {
  padding-top: clamp(86px, 11vw, 138px);
}

.jukebox {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 106, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 180, 106, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(16, 40, 50, 0.94), rgba(6, 16, 21, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.jukebox-cover {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: clamp(22px, 5vw, 48px);
  background:
    linear-gradient(180deg, rgba(6, 16, 21, 0.04), rgba(6, 16, 21, 0.36)),
    radial-gradient(circle at 52% 38%, rgba(184, 90, 67, 0.22), transparent 34%);
}

.jukebox-cover img {
  width: min(100%, 520px);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.jukebox-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(24px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.jukebox-panel h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.jukebox-intro {
  max-width: 620px;
  margin: 0;
  color: rgba(242, 234, 216, 0.76);
  font-size: 1.05rem;
}

.jukebox-now {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 180, 106, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.jukebox-now span,
.jukebox-search span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jukebox-now strong {
  color: var(--offwhite);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
}

.jukebox-audio {
  width: 100%;
  max-width: 680px;
  accent-color: var(--gold);
}

.jukebox-search {
  display: grid;
  gap: 8px;
}

.jukebox-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--offwhite);
  border: 1px solid rgba(242, 234, 216, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

.jukebox-search input::placeholder {
  color: rgba(242, 234, 216, 0.46);
}

.jukebox-list {
  display: grid;
  gap: 9px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.track {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 10px 14px;
  color: rgba(242, 234, 216, 0.78);
  text-align: left;
  border: 1px solid rgba(242, 234, 216, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.track span {
  color: rgba(216, 180, 106, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
}

.track strong {
  font-size: 0.98rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.track:hover,
.track:focus-visible,
.track.is-active {
  color: var(--offwhite);
  border-color: rgba(216, 180, 106, 0.44);
  background: rgba(216, 180, 106, 0.1);
}

.track:hover,
.track:focus-visible {
  transform: translateY(-1px);
}

.song-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.song-tile {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  color: var(--offwhite);
  background: var(--deep);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.song-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 21, 0.04), rgba(6, 16, 21, 0.9));
}

.song-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 180, 106, 0.22), transparent 34%),
    linear-gradient(180deg, #173540, #061015);
}

.song-tile.sea {
  background:
    linear-gradient(180deg, rgba(6, 16, 21, 0.12), rgba(6, 16, 21, 0.9)),
    url("../img/nordsee-panorama-optimized.jpg") center / cover;
}

.song-tile.harbor {
  background:
    linear-gradient(180deg, rgba(6, 16, 21, 0.1), rgba(6, 16, 21, 0.9)),
    linear-gradient(135deg, #1b5660, #061015);
}

.song-tile div {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
}

.song-tile span,
.video-card span,
.member-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.song-tile p,
.story-copy p,
.quiet-card p,
.member-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.video-stage {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #03080c;
}

.video-card div {
  padding: 18px;
}

.story {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, var(--midnight), var(--night));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-image {
  min-height: 52svh;
  background:
    linear-gradient(180deg, rgba(6, 16, 21, 0.08), rgba(6, 16, 21, 0.58)),
    url("../img/nordsee-panorama-optimized.jpg") center / cover;
}

.story-copy {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 10vw, 106px) 0;
}

.story-copy p:not(.kicker) {
  width: min(680px, 100%);
}

.member-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.member-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: var(--night);
}

.member-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 18px;
}

.member-card h3 {
  color: var(--offwhite);
}

.member-page {
  min-height: 100vh;
  color: var(--offwhite);
  background:
    linear-gradient(180deg, rgba(6, 16, 21, 0.72), rgba(6, 16, 21, 0.98)),
    url("../img/nordsee-panorama-optimized.jpg") center / cover fixed;
}

.member-header {
  min-height: 72px;
}

.member-detail {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(104px, 12vw, 136px) 0 clamp(42px, 7vw, 76px);
}

.member-detail h1 {
  width: 100%;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 10vw, 7rem);
}

.member-note {
  width: min(720px, 100%);
  margin: 0 0 26px;
  color: rgba(242, 234, 216, 0.78);
  font-size: 1.05rem;
}

.back-link {
  display: inline-flex;
  width: auto;
  margin-bottom: 34px;
  color: rgba(242, 234, 216, 0.78);
  text-decoration: none;
  font-weight: 800;
}

.back-link:hover {
  color: var(--offwhite);
}

.setcard-frame {
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(10px, 2vw, 22px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.setcard-frame img {
  width: min(100%, 980px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
}

.logbook {
  padding-top: 0;
}

.quiet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.quiet-card {
  min-height: 280px;
  padding: 24px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 48px;
  border-radius: 999px;
  font: inherit;
}

.newsletter-form input {
  width: 100%;
  padding: 0 16px;
  color: var(--offwhite);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-form button {
  border: 0;
  color: white;
  background: var(--harbor);
  font-weight: 900;
}

.social-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  color: var(--offwhite);
  background:
    linear-gradient(90deg, rgba(6, 16, 21, 0.96), rgba(6, 16, 21, 0.7)),
    url("../img/nordsee-panorama-optimized.jpg") center / cover;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social a,
.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(242, 234, 216, 0.34);
  border-radius: 999px;
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.social-pill {
  color: rgba(242, 234, 216, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px;
  color: rgba(242, 234, 216, 0.72);
  background: #03080c;
}

.footer a {
  color: var(--offwhite);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 96px;
}

.legal-content > h1 {
  margin-bottom: 54px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.legal-content p,
.legal-content address {
  max-width: 72ch;
  margin: 0 0 16px;
  color: rgba(242, 234, 216, 0.8);
  font-style: normal;
}

.legal-content a {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(6, 16, 21, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  }

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

  .nav-links a {
    padding: 12px;
  }
}

@media (min-width: 720px) {
  .jukebox {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  }

  .jukebox-cover {
    min-height: 100%;
  }

  .jukebox-panel {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .song-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .song-tile.large {
    grid-row: span 2;
    min-height: 590px;
  }

  .video-grid,
  .quiet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form button {
    min-width: 132px;
  }

  .story {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: stretch;
  }

  .story-image {
    min-height: 680px;
  }

  .story-copy {
    width: auto;
    max-width: 560px;
    margin: auto clamp(30px, 7vw, 96px);
  }
}

@media (min-width: 1080px) {
  .member-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .member-card {
    grid-template-rows: 250px 1fr;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.18rem, 10.6vw, 2.48rem);
  }

  .hero {
    padding-bottom: 74px;
  }

  .hero-picture img {
    object-position: 8% center;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .song-tile {
    min-height: 320px;
  }

  .song-tile.large {
    min-height: 430px;
  }

  .member-card {
    grid-template-rows: 240px 1fr;
  }

  .social a,
  .social-pill,
  .newsletter-form button {
    width: 100%;
  }

  .setcard-frame {
    margin-left: -8px;
    margin-right: -8px;
    padding: 8px;
  }

  .footer {
    flex-direction: column;
  }
}
