/* =====================================================
   Annemary and the Gentlemen — style.css
   ===================================================== */

/* 0. Fonts */
@font-face {
  font-family: 'Crushed';
  src: url('/assets/fonts/Crushed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 1. CSS Custom Properties */
:root {
  --navy:        #1b2a4a;
  --navy-light:  #253660;
  --petrol:      #2d7a8a;
  --ivory:       #f4efe6;
  --ivory-dark:  #e8e0d2;
  --copper:      #b87040;
  --copper-dark: #9a5e34;
  --rose:        #c08880;
  --white:       #ffffff;
  --text:        #2a2424;
  --text-light:  #5a5252;

  --font-display: 'Crushed', sans-serif;
  --font-head: 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  --max-width: 1200px;
  --nav-height: 70px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:      0.25s var(--ease);
  --transition-slow: 0.55s var(--ease);
}

/* 2. Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* 3. Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

p {
  margin-bottom: 1.1rem;
  max-width: 65ch;
}
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
}

blockquote {
  border-left: 3px solid var(--copper);
  padding-left: var(--space-md);
  margin: 0;
}

blockquote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* 4. Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.grid-2 {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* 5. Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background-color: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--copper-dark);
  border-color: var(--copper-dark);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  background-color: var(--navy);
  color: var(--ivory);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
}

/* 6. Focus */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* 7. Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--ivory);
  padding: 0.5rem 1.2rem;
  z-index: 300;
  font-size: 0.875rem;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* 8. Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-slow), backdrop-filter var(--transition-slow);
}

.nav--scrolled {
  background-color: rgba(27, 42, 74, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  width: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 55px; width: auto; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 100;
}
.nav__menu.is-open { transform: translateX(0); }

.nav__link {
  display: block;
  color: rgba(244, 239, 230, 0.85);
  font-size: 1.6rem;
  font-family: var(--font-head);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  transition: color var(--transition);
}
.nav__link:last-child { border-bottom: none; }
.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--white);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.nav__overlay.is-open { display: block; }

@media (min-width: 900px) {
  .nav__toggle { display: none; }

  .nav__menu {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 2.5rem;
    width: auto;
    max-width: none;
    background: transparent;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }

  .nav__link {
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0;
    border: none;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }

  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__link.is-active {
    color: var(--white);
    text-decoration-line: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
  }

  .nav__overlay { display: none !important; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/assets/images/hero-keyvisual.jpg');
  background-size: cover;
  background-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 42, 74, 0.2) 0%,
    rgba(27, 42, 74, 0.45) 45%,
    rgba(27, 42, 74, 0.9) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  padding-top: var(--nav-height);
}

.hero__title {
  margin-bottom: 1.1rem;
}

.hero__wordmark {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.hero__claim {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(244, 239, 230, 0.82);
  margin-bottom: 1.4rem;
  max-width: none;
}

.hero__text {
  font-size: 1rem;
  max-width: 52ch;
  color: rgba(244, 239, 230, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about { background-color: var(--ivory); }

.about__text {
  max-width: 750px;
  margin: 0 auto;
}

.about__text h2 { margin-bottom: var(--space-md); }

.about__text p {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 0.8em;
}
.about__text p:last-child { margin-bottom: 0; }

/* =====================================================
   MUSIC
   ===================================================== */
.music {
  background-color: var(--navy);
  color: var(--ivory);
}

.music h2,
.music h3 {
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.music__text p {
  color: rgba(244, 239, 230, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}

.music__subheading {
  margin-top: var(--space-lg) !important;
  margin-bottom: var(--space-sm) !important;
}

.music__image {
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.music__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.music__formula {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.music__formula-item {
  flex: 1;
  min-width: 120px;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(244, 239, 230, 0.18);
  text-align: center;
}

.music__formula-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.music__formula-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}

/* Audio Player */
.player {
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.14);
}

.player__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}

.player__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.player__controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.player__play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  transition: background-color var(--transition), transform var(--transition);
}
.player__play:hover { background-color: var(--copper-dark); transform: scale(1.06); }
.player__play:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

.player__play svg {
  width: 22px;
  height: 22px;
  display: block;
}

.player__progress-area { flex: 1; }

.player__track {
  position: relative;
  height: 3px;
  background-color: rgba(244, 239, 230, 0.18);
  cursor: pointer;
  margin-bottom: 0.55rem;
}

.player__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--copper);
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.player__seek {
  position: absolute;
  inset: -8px 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: calc(100% + 16px);
}

.player__times {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.5);
  font-variant-numeric: tabular-nums;
}

.player__caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.5);
  font-style: italic;
}

/* =====================================================
   BAND
   ===================================================== */
.band {
  background-color: var(--navy);
  color: var(--ivory);
}

.band h2, .band h3 { color: var(--ivory); }

.band__intro {
  max-width: 62ch;
  margin-bottom: var(--space-xl);
}
.band__intro h2 { margin-bottom: var(--space-md); }

.band__members {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.member {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .member {
    grid-template-columns: 210px 1fr;
    align-items: start;
  }
}

.member__image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: filter var(--transition-slow);
}
.member__image img:hover { filter: grayscale(0%); }

.member__name {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.member__role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-sm);
  display: block;
}

.member__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(244, 239, 230, 0.8);
  max-width: 58ch;
}

/* =====================================================
   BOOKING
   ===================================================== */
.booking { background-color: var(--ivory); }

.booking h2 { margin-bottom: var(--space-md); }

.booking blockquote {
  margin: var(--space-md) 0;
}
.booking blockquote p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
}
.booking blockquote p + p { margin-top: 0.75rem; }

.booking__list {
  margin: var(--space-md) 0;
}
.booking__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}
.booking__list li:first-child { border-top: 1px solid rgba(27, 42, 74, 0.08); }
.booking__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--copper);
  border-radius: 50%;
}

.booking__note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: var(--space-md);
}

.booking__cta {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.booking__email {
  font-size: 0.95rem;
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.booking__email:hover { color: var(--copper); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background-color: var(--navy);
  color: var(--ivory);
}

.contact__layout {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact__layout { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

.contact__heading {
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.contact__intro {
  color: rgba(244, 239, 230, 0.8);
  margin-bottom: var(--space-lg);
}

.contact__info-item { margin-bottom: var(--space-md); }

.contact__info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.3rem;
}

.contact__info-value {
  color: var(--ivory);
  font-size: 0.95rem;
}
.contact__info-value a {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.contact__info-value a:hover { color: var(--copper); }

/* Form */
.form {
  display: grid;
  gap: 1.35rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
}

.form__input,
.form__textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.18);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), background-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(244, 239, 230, 0.28); }
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--copper);
  background-color: rgba(255, 255, 255, 0.09);
}

.form__textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form__row {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 580px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__honey { display: none; }

.form__feedback {
  display: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  border-left: 4px solid;
  margin-bottom: 1.5rem;
}
.form__feedback--success {
  border-color: #3dd68c;
  color: #3dd68c;
  background-color: rgba(61, 214, 140, 0.08);
}
.form__feedback--error {
  border-color: #f87171;
  color: #f87171;
  background-color: rgba(248, 113, 113, 0.08);
}
.form__feedback.is-visible { display: block; }

.form__date-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 0.75rem;
}

.form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 239, 230, 0.2);
  border-radius: 2px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4efe6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
  transition: border-color var(--transition);
}

.form__select:focus {
  outline: none;
  border-color: var(--copper);
}

.form__select option {
  background-color: var(--navy);
  color: var(--ivory);
}

/* =====================================================
   TRACKS (hochgeladene Songs im Music-Bereich)
   ===================================================== */
.tracks {
  display: none; /* per JS eingeblendet wenn Songs vorhanden */
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
}

.tracks h3 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.track {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
.track:first-of-type { border-top: 1px solid rgba(244, 239, 230, 0.1); }

.track__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.6rem;
}

.track__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ivory);
}

.track__desc {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.55);
}

.track__player {
  width: 100%;
  height: 34px;
  accent-color: var(--copper);
}

/* =====================================================
   LIVE / KONZERTTERMINE
   ===================================================== */
.live { background-color: var(--ivory); }

.live__list {
  margin-top: 2.5rem;
}

.live__item {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.live__item:first-child { border-top: 1px solid var(--ivory-dark); }

.live__date {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  white-space: nowrap;
}

.live__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.live__event {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.live__venue {
  font-size: 0.85rem;
  color: var(--text-light);
}

.live__action { text-align: right; }

.live__empty {
  color: var(--text-light);
  font-style: italic;
  padding: 1.5rem 0;
}

@media (max-width: 768px) {
  .live__item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .live__action { text-align: left; margin-top: 0.4rem; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: var(--navy);
  border-top: 1px solid rgba(244, 239, 230, 0.09);
  padding: var(--space-lg) 0;
  color: rgba(244, 239, 230, 0.65);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__logo img { height: 34px; width: auto; opacity: 0.75; }

.footer__claim {
  margin-top: 0.7rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.55);
}

.footer__location {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer__links { align-items: flex-end; }
}

.footer__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--copper); }

/* =====================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ===================================================== */
.legal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.legal-nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-nav__logo img { height: 34px; width: auto; }

.legal-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 239, 230, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.legal-nav__back:hover { color: var(--copper); }
.legal-nav__back svg { width: 16px; height: 16px; }

.legal-page {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  min-height: 100vh;
  background-color: var(--ivory);
}

.legal-page .container { max-width: 760px; }

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page address {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-light);
  font-style: normal;
  max-width: 65ch;
  margin-bottom: 0.8rem;
}

.legal-page a {
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.legal-page a:hover { color: var(--copper); }

.legal-footer {
  background-color: var(--navy);
  padding: var(--space-md) 0;
  margin-top: var(--space-xl);
}
.legal-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-width);
}
.legal-footer__text {
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.45);
}
.legal-footer__links {
  display: flex;
  gap: var(--space-md);
}
.legal-footer__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  transition: color var(--transition);
}
.legal-footer__link:hover { color: var(--copper); }

/* =====================================================
   RESPONSIVE — TABLET (769px – 1024px)
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4.5rem;
  }

  .section { padding: 4.5rem 0; }

  .hero {
    min-height: 90svh;
    min-height: 90vh;
    padding-bottom: 4rem;
  }

  .hero__bg {
    background-image: url('/assets/images/hero-keyvisual-tablet.jpg');
  }

  .hero__wordmark { max-width: 380px; }

  .player {
    padding: var(--space-md);
  }

  .band__members { gap: 3.5rem; }
}

/* =====================================================
   RESPONSIVE — MOBILE (max 768px)
   ===================================================== */
@media (max-width: 768px) {

  /* Scale down global spacing tokens */
  :root {
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --nav-height: 62px;
  }

  /* Tighter horizontal margins */
  .container {
    padding: 0 1.25rem;
  }

  /* Section padding */
  .section {
    padding: 3.5rem 0;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 88svh;
    min-height: 88vh;
    padding-bottom: 2.75rem;
  }

  .hero__bg {
    background-image: url('/assets/images/hero-keyvisual-smart.jpg');
    background-position: center top;
  }

  .hero__content {
    padding-top: 4.5rem;  /* nav clearance */
  }

  .hero__title {
    margin-bottom: 0.75rem;
  }

  .hero__wordmark { max-width: 280px; }

  .hero__claim {
    font-size: 1rem;
    margin-bottom: 0.85rem;
  }

  .hero__text {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  /* Stack CTAs vertically, full width */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__ctas .btn {
    text-align: center;
    width: 100%;
  }

  /* ---- MUSIC ---- */
  .music h2 { margin-bottom: 1.5rem; }

  .music__subheading {
    margin-top: 2rem !important;
    margin-bottom: 0.75rem !important;
  }

  .music__formula-num { font-size: 2rem; }

  /* Player: remove the wide horizontal padding */
  .player {
    padding: 1.5rem;
    margin-top: 2.5rem;
  }

  /* ---- BAND ---- */
  .band__intro { margin-bottom: 2rem; }
  .band__members { gap: 2.5rem; }

  /* Member image: square looks cramped on small phones, 3:4 is better */
  .member__image { aspect-ratio: 3 / 4; }

  /* ---- BOOKING ---- */
  /* Blockquote gets too much left padding on narrow screens */
  blockquote {
    padding-left: 1.25rem;
  }

  blockquote p { font-size: 1rem; }

  .booking__cta { margin-top: 2rem; }

  /* ---- CONTACT ---- */
  .contact__intro { margin-bottom: 1.5rem; }
  .contact__info-item { margin-bottom: 1.5rem; }

  /* ---- FOOTER ---- */
  .footer { padding: 2.5rem 0; }

  .footer__inner { gap: 2rem; }

  /* Show footer links as a row instead of stacked column */
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  /* ---- LEGAL PAGES ---- */
  .legal-page {
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 3rem;
  }

  .legal-page h1 { margin-bottom: 2rem; }
  .legal-page h2 { margin-top: 2rem; }

  .legal-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .legal-footer__links { gap: 1.25rem; }

  /* ---- NAV: slightly smaller icon on mobile ---- */
  .nav__logo img { height: 44px; }
  .nav__inner { padding: 0 1.25rem; }
}
