:root {
  --hero-image: url("assets/guitar-electric.jpg");
  --hero-image-acoustic: url("assets/guitar-acoustic.jpg");
  --thumb-image-1: url("assets/guitar-electric-thumb.jpg");
  --thumb-image-2: url("assets/guitar-acoustic-thumb.jpg");
  --thumb-image-3: url("assets/guitar-electric-thumb.jpg");
  --page-bg: #07111d;
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.86);
  --accent-start: #f7cf6c;
  --accent-end: #d89b1f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.impressum-page {
  background:
    radial-gradient(circle at top left, rgba(247, 207, 108, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #091426 100%);
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 11, 24, 0.90) 0%,
      rgba(5, 11, 24, 0.82) 28%,
      rgba(5, 11, 24, 0.58) 58%,
      rgba(5, 11, 24, 0.72) 100%
    ),
    var(--hero-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  max-width: 720px;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.5rem, 5.6vw, 5.75rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero p {
  margin: 0 0 2rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.65;
  color: var(--text-soft);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: #0b1220;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03) saturate(1.02);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.hero__cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.site-footer {
  z-index: 2;
  width: 100%;
}

.site-footer__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-footer a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer--hero {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(5, 11, 24, 0), rgba(5, 11, 24, 0.72));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer--page {
  margin-top: 2.5rem;
  padding: 1.25rem clamp(1rem, 3vw, 1.5rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impressum {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 4rem) clamp(1rem, 3vw, 1.5rem) 0;
}

.impressum__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
}

.impressum__back:hover {
  color: #ffffff;
}

.impressum__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.impressum__lead {
  margin: 0 0 1.75rem;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.impressum__panel {
  background: rgba(8, 15, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.impressum__item {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.impressum__item:nth-child(2n) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.impressum__item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.impressum__label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.impressum__value {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(5, 11, 24, 0.92) 0%,
        rgba(5, 11, 24, 0.84) 36%,
        rgba(5, 11, 24, 0.60) 100%
      ),
      var(--hero-image);
  }

  .hero__inner {
    max-width: 640px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
  }

  .hero p {
    font-size: 1.02rem;
  }
}

@media (max-width: 720px) {
  .impressum__grid {
    grid-template-columns: 1fr;
  }

  .impressum__item {
    border-left: none !important;
  }

  .impressum__item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .impressum__item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .hero__inner {
    padding: 3.25rem 1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .hero p {
    margin-bottom: 1.6rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero__cta {
    width: fit-content;
    padding: 0.9rem 1.4rem;
    font-size: 0.98rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer--hero {
    padding: 0.9rem 1rem;
  }

  .impressum__item {
    padding: 1rem;
  }

  .site-footer--page {
    padding: 1rem 1rem 1.5rem;
  }
}

:root {
  --home-bg: #363434;
  --home-bg-deep: #2d2b2b;
  --home-panel: #474444;
  --home-gold: #f6d86b;
  --home-gold-deep: #d8b24f;
  --home-line: rgba(246, 216, 107, 0.9);
  --home-text: #f9e27d;
  --home-body: rgba(255, 255, 255, 0.82);
}

body.home-page {
  background: var(--home-bg);
  color: var(--home-body);
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body.home-page a {
  color: inherit;
}

.showcase {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1rem, 1.8vw, 1.6rem) clamp(1rem, 3.2vw, 2.5rem) clamp(0.9rem, 1.6vw, 1.25rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.05)),
    var(--home-bg);
}

.showcase::before,
.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.showcase::before {
  background:
    linear-gradient(132deg, transparent 0 44%, rgba(255, 255, 255, 0.035) 44% 46%, transparent 46% 100%),
    linear-gradient(312deg, transparent 0 48%, rgba(0, 0, 0, 0.2) 48% 50%, transparent 50% 100%);
  transform: scale(1.04);
  opacity: 0.9;
}

.showcase::after {
  inset: -10% -20% auto auto;
  width: min(55vw, 46rem);
  height: min(55vw, 46rem);
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), transparent 62%);
  transform: rotate(45deg);
  opacity: 0.9;
}

.showcase > * {
  position: relative;
  z-index: 1;
}

.showcase__topbar {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 0.1rem;
}

.showcase__brand {
  text-decoration: none;
  color: var(--home-gold);
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: right;
}

.showcase__stage {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.showcase__copy {
  padding: clamp(0.5rem, 2vw, 1.5rem) 0 0;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.showcase__rule {
  width: 100%;
  height: 1px;
  background: var(--home-line);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.showcase__rule--bottom {
  margin-top: 0.15rem;
}

.showcase__copy h1 {
  margin: 0;
  display: grid;
  gap: 0.04em;
  max-width: 13.5ch;
  font-family: "Bodoni 72", "Didot", "Baskerville", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.2rem, 6.6vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: none;
  color: var(--home-text);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
  font-kerning: normal;
  font-feature-settings: "liga" 1, "kern" 1;
}

.showcase__copy h1 span {
  display: block;
}

.showcase__copy p {
  margin: 0.2rem 0 0;
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.2rem;
  padding: 0.92rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 216, 107, 0.28);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  color: #342b16;
  background: linear-gradient(135deg, var(--home-gold) 0%, var(--home-gold-deep) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.hero__cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.showcase__visual {
  position: relative;
  min-height: clamp(36rem, 52vw, 56rem);
}

.showcase__panel {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(1.06) brightness(0.88) saturate(0.96);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.showcase__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.showcase__panel--top {
  top: 3.3rem;
  right: 14%;
  width: 60%;
  height: 7rem;
  background-image: var(--hero-image);
  background-position: 74% 28%;
}

.showcase__panel--main {
  top: 8rem;
  right: 0;
  width: 82%;
  height: 31rem;
  background-image: var(--hero-image-acoustic);
  background-position: center center;
}

.showcase__panel--bottom {
  right: 14%;
  bottom: 1.2rem;
  width: 60%;
  height: 9rem;
  background-image: var(--hero-image);
  background-position: 58% 74%;
}

.showcase__cutout {
  position: absolute;
  top: 10.4rem;
  left: 12%;
  width: 38%;
  height: 18rem;
  background: var(--home-bg);
  z-index: 2;
}

.showcase__stripe {
  position: absolute;
  top: 5.1rem;
  right: 5.1rem;
  width: 1rem;
  height: 31.5rem;
  background: var(--home-gold);
  z-index: 3;
}

.showcase__controls {
  position: absolute;
  top: 16.4rem;
  right: 0.95rem;
  display: grid;
  gap: 1.1rem;
  z-index: 3;
}

.showcase__control {
  width: 3.7rem;
  height: 3.7rem;
  background: var(--home-gold);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.showcase__control::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1.05rem solid transparent;
  border-right: 1.05rem solid transparent;
}

.showcase__control--up::before {
  border-bottom: 1.55rem solid var(--home-bg);
  margin-top: 0.15rem;
}

.showcase__control--down::before {
  border-top: 1.55rem solid var(--home-bg);
  margin-bottom: 0.15rem;
}

.showcase__bottom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding-top: 0.15rem;
}

.showcase__chevrons {
  position: relative;
  flex: 0 0 auto;
  width: 7.2rem;
  height: 4.9rem;
  color: var(--home-gold);
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.12em;
  transform: translateY(-0.1rem);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.showcase__thumbs {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.6rem);
  flex-wrap: wrap;
}

.showcase__thumb {
  width: clamp(4.8rem, 8vw, 7rem);
  aspect-ratio: 1 / 1;
  background-color: #111;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(1.05) brightness(0.86) saturate(0.96);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.showcase__thumb--1 {
  background-image: var(--thumb-image-1);
  background-position: 70% 28%;
}

.showcase__thumb--2 {
  background-image: var(--thumb-image-2);
  background-position: center center;
}

.showcase__thumb--3 {
  background-image: var(--thumb-image-3);
  background-position: 58% 72%;
}

.site-footer--hero {
  margin-top: 0.15rem;
  padding: 0.55rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.site-footer--hero .site-footer__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer--hero .site-footer__inner a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer--hero .site-footer__inner a:hover {
  color: #ffffff;
}

body.impressum-page {
  background: linear-gradient(180deg, #2f2d2d 0%, #262424 100%);
}

body.impressum-page .impressum {
  padding-top: clamp(1.75rem, 4vw, 3rem);
}

body.impressum-page .impressum__title,
body.impressum-page .impressum__back {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body.impressum-page .impressum__title {
  color: var(--home-text);
}

body.impressum-page .impressum__lead {
  color: rgba(255, 255, 255, 0.76);
}

body.impressum-page .impressum__panel {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.09);
}

body.impressum-page .impressum__label {
  color: rgba(255, 255, 255, 0.55);
}

body.impressum-page .impressum__value {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
  .showcase__stage {
    grid-template-columns: 1fr;
  }

  .showcase__visual {
    min-height: 32rem;
  }

  .showcase__copy h1 {
    max-width: 15ch;
  }
}

@media (max-width: 900px) {
  .showcase__brand {
    font-size: 1.02rem;
  }

  .showcase__copy h1 {
    font-size: clamp(3rem, 9vw, 5rem);
    max-width: 12.8ch;
  }

  .showcase__panel--top {
    right: 8%;
    width: 76%;
  }

  .showcase__panel--main {
    width: 92%;
  }

  .showcase__panel--bottom {
    right: 8%;
    width: 74%;
  }

  .showcase__cutout {
    left: 8%;
    width: 44%;
  }

  .showcase__stripe {
    right: 3.4rem;
  }

  .showcase__controls {
    right: 0.35rem;
  }
}

@media (max-width: 700px) {
  .showcase {
    padding: 1rem;
    gap: 0.9rem;
  }

  .showcase__panel--top,
  .showcase__panel--bottom {
    background-image: var(--thumb-image-1);
  }

  .showcase__panel--main {
    background-image: var(--thumb-image-2);
  }

  .showcase__stage {
    gap: 1rem;
  }

  .showcase__copy h1 {
    max-width: 13.2ch;
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 0.92;
  }

  .showcase__copy p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .showcase__visual {
    min-height: 27rem;
  }

  .showcase__panel--top {
    top: 2rem;
    right: 10%;
    height: 4.5rem;
  }

  .showcase__panel--main {
    top: 5rem;
    height: 17rem;
  }

  .showcase__panel--bottom {
    right: 10%;
    bottom: 0.85rem;
    height: 5.8rem;
  }

  .showcase__cutout {
    top: 6rem;
    left: 10%;
    width: 46%;
    height: 10.6rem;
  }

  .showcase__stripe,
  .showcase__controls {
    display: none;
  }

  .showcase__bottom {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .showcase__chevrons {
    width: 5.3rem;
    height: 3.8rem;
    font-size: 4.6rem;
  }

  .showcase__thumb {
    width: 4.2rem;
  }

  .site-footer--hero .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-bottom: 0.2rem;
  }
}

@media (max-width: 520px) {
  .showcase {
    min-height: 100svh;
  }

  .showcase__copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 14vw, 3.3rem);
  }

  .hero__cta {
    width: 100%;
    max-width: 15rem;
  }

  .showcase__thumb:nth-child(3) {
    display: none;
  }
}
