:root {
  --ink: #151311;
  --paper: #f7f1e8;
  --ivory: #fffaf2;
  --muted: #736a60;
  --line: rgba(21, 19, 17, 0.16);
  --gold: #b98b4a;
  --wood: #8e4c24;
  --charcoal: #23211e;
  --shadow: 0 28px 80px rgba(21, 19, 17, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Serif SC", serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f0d8a8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 120ms linear;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 62px);
  color: var(--ivory);
  mix-blend-mode: difference;
}

.brand {
  display: grid;
  gap: 0;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
}

.brand small {
  font-size: 10px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.lang-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  opacity: 0.5;
  padding: 4px 0;
}

.lang-button.is-active {
  opacity: 1;
  border-bottom: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 46vw) 1fr;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--ivory);
}

.hero-image {
  --hero-shift: 0px;
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2)),
    url("1.png") center top / cover;
  transform: translateY(var(--hero-shift)) scale(1.035);
  transform-origin: center top;
  transition: transform 160ms linear;
}

.hero-content {
  align-self: center;
  width: min(680px, 86%);
  padding: 120px 0 120px clamp(34px, 7vw, 110px);
  animation: heroTextIn 900ms ease 120ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.18;
}

h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(42px, 6vw, 86px);
}

html[lang="de"] h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.25vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 58px);
}

h3 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.28;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #140f0a;
}

.button.ghost {
  border-color: rgba(255, 250, 242, 0.34);
  color: var(--ivory);
}

.service-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.section-band {
  background: var(--ivory);
}

.intro,
.services,
.teaching,
.contact,
.quote {
  padding: clamp(76px, 10vw, 150px) clamp(20px, 5vw, 78px);
}

.intro-grid,
.artist-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.artist-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.48fr) minmax(480px, 0.52fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: stretch;
}

.artist-portrait {
  width: 100%;
  height: 100%;
  min-height: 720px;
  margin: 0;
  box-shadow: var(--shadow);
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.artist-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
}

.artist-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.42;
}

.bio-text {
  display: grid;
  gap: 14px;
  max-width: 720px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.72;
}

.bio-text p {
  margin-bottom: 0;
}

.intro h2,
.section-heading,
.contact h2 {
  max-width: 860px;
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.stats strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.1;
}

.stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}

.services {
  background: var(--paper);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 280px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
}

.service-card p {
  color: var(--muted);
}

.concert-calendar {
  margin-top: clamp(34px, 5vw, 64px);
}

.concert-list {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.concert-list:not(.is-expanded) .concert-item.is-extra {
  display: none;
}

.concert-item {
  display: grid;
  grid-template-columns: minmax(118px, 0.18fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.42);
  min-height: 146px;
  overflow: hidden;
}

.concert-item.is-past {
  background: rgba(231, 228, 220, 0.5);
  opacity: 0.74;
}

.concert-item.is-past .concert-date,
.concert-item.is-past .concert-city,
.concert-item.is-past .concert-info h4 {
  color: #8b8780;
}

.concert-date {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px 0 24px 24px;
  border-right: 1px solid var(--line);
  color: var(--wood);
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.concert-date span,
.concert-date small {
  font-size: 15px;
  font-weight: 700;
}

.concert-date strong {
  color: var(--ink);
  font-size: 54px;
  line-height: 0.95;
}

.concert-info {
  position: relative;
  align-self: center;
  padding: 28px 0;
  padding-right: 150px;
}

.concert-status {
  position: absolute;
  top: 28px;
  right: 28px;
  border: 1px solid var(--line);
  color: #8b8780;
  padding: 5px 9px;
  font: 700 11px/1 "Inter", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-city {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.concert-info h4 {
  margin: 0 0 10px;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.25;
}

.concert-info p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.concert-toggle {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 15px 22px;
  font: 700 14px/1 "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.concert-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.teaching {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.teaching-media {
  box-shadow: var(--shadow);
}

.teaching-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 47% 50%;
}

.teaching-copy p {
  color: var(--muted);
  font-size: 17px;
}

.lesson-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lesson-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 13px;
}

.lesson-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border: 1px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
}

.quote {
  background: var(--ink);
  color: var(--ivory);
}

.quote p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(28px, 5vw, 62px);
  line-height: 1.35;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 7vw, 100px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(247, 241, 232, 0.94)),
    var(--paper);
}

.contact p {
  max-width: 590px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 17px;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 54px);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--wood);
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-error {
  color: #8f3f32;
}

.form-note {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-note a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.legal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  overflow-y: auto;
  padding: clamp(84px, 8vw, 128px) clamp(20px, 5vw, 78px);
  background: var(--paper);
}

.legal.is-open {
  display: block;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(420px, 0.68fr);
  gap: clamp(34px, 6vw, 82px);
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-close {
  position: fixed;
  top: 24px;
  right: clamp(20px, 5vw, 78px);
  z-index: 31;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.92);
  color: var(--ink);
  width: 44px;
  height: 44px;
  padding: 0;
  font: 400 30px/1 "Inter", sans-serif;
  cursor: pointer;
}

.legal-close:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.legal h2 {
  max-width: 430px;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.08;
}

.legal h3 {
  margin: 28px 0 8px;
  font-size: 21px;
}

.legal-copy {
  color: var(--muted);
  font-size: 15.5px;
}

.legal-copy p {
  margin-bottom: 16px;
}

.legal-copy strong,
.legal-copy h3 {
  color: var(--ink);
}

.legal-copy a {
  border-bottom: 1px solid currentColor;
}

.legal-note {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 78px);
  background: var(--ink);
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  border-bottom: 1px solid transparent;
}

.legal-links a:hover {
  border-color: currentColor;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.js-enabled .concert-item.is-past.reveal.is-visible {
  opacity: 0.74;
}

.js-enabled .service-card.reveal {
  transform: translateY(42px) scale(0.985);
}

.js-enabled .service-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js-enabled .teaching-media.reveal {
  transform: translateY(36px) scale(0.97);
}

.js-enabled .teaching-media.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js-enabled .quote p.reveal {
  transform: translateY(24px);
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    mix-blend-mode: normal;
  }

  .nav-links {
    gap: 18px;
    font-size: 13px;
  }

  .header-actions {
    gap: 16px;
  }

  .hero {
    display: block;
    background: var(--ink);
  }

  .hero-image {
    min-height: 58svh;
    background-position: center 12%;
    transform: translateY(calc(var(--hero-shift) * 0.45)) scale(1.02);
  }

  .hero-content {
    width: auto;
    padding: 44px 22px 80px;
  }

  .intro-grid,
  .artist-grid,
  .teaching,
  .contact,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .artist-grid {
    align-items: start;
  }

  .artist-portrait {
    width: min(500px, 100%);
    height: auto;
    min-height: 0;
  }

  .artist-portrait img {
    height: auto;
    aspect-ratio: 5 / 6;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .concert-item {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .service-card {
    min-height: auto;
  }

  .contact-form {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: block;
    left: 0;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    min-height: 58svh;
    padding: 18px 18px 0;
    overflow: visible;
  }

  .brand {
    position: absolute;
    top: 18px;
    left: 18px;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: stretch;
    gap: 0;
    max-width: none;
    width: auto;
    padding: 13px 14px 14px;
    background: linear-gradient(180deg, rgba(21, 19, 17, 0.18), rgba(21, 19, 17, 0.72));
    border-top: 1px solid rgba(255, 250, 242, 0.14);
    font-size: 12px;
    line-height: 1.1;
    text-align: center;
  }

  .nav-links a {
    min-width: 0;
    padding: 2px 4px;
    overflow-wrap: anywhere;
  }

  .header-actions {
    display: block;
  }

  .language-switcher {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 15px;
    line-height: 1;
    gap: 6px;
    white-space: nowrap;
  }

  h1 {
    font-size: 40px;
  }

  .artist-copy h2 {
    font-size: 42px;
  }

  .artist-lead {
    font-size: 21px;
    line-height: 1.48;
  }

  .bio-text {
    font-size: 15.5px;
  }

  .hero-copy,
  .intro-copy,
  .teaching-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .concert-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .concert-date {
    grid-template-columns: auto auto auto;
    justify-content: start;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px 14px;
  }

  .concert-date strong {
    font-size: 34px;
  }

  .concert-info {
    padding: 22px;
  }

  .concert-status {
    position: static;
    display: inline-flex;
    margin: 0 0 12px;
  }

  .intro,
  .services,
  .teaching,
  .contact,
  .quote {
    padding: 66px 20px;
  }

  .legal {
    padding: 66px 20px;
  }

  .legal h2 {
    font-size: 34px;
  }

  .legal-copy {
    font-size: 14.5px;
  }

  .legal h3 {
    font-size: 19px;
  }

  .teaching-media img {
    aspect-ratio: 3 / 4;
    object-position: 44% 50%;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 15px 14px 0;
    gap: 8px;
  }

  .brand {
    top: 15px;
    left: 14px;
  }

  .brand span {
    font-size: 24px;
  }

  .brand small {
    font-size: 9px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    padding: 12px 9px 13px;
    font-size: 10.8px;
  }

  .language-switcher {
    top: 15px;
    right: 14px;
    font-size: 13.5px;
    gap: 5px;
  }
}

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

  .scroll-progress,
  .hero-image,
  .hero-content,
  .button,
  .js-enabled .reveal,
  .js-enabled .service-card.reveal,
  .js-enabled .teaching-media.reveal,
  .js-enabled .quote p.reveal {
    transition: none;
    animation: none;
    transform: none;
  }

  .js-enabled .reveal {
    opacity: 1;
  }
}
