/* cw–audio · statische Website v1 */

:root {
  --paper: #e8f4f3;
  --paper-strong: #dceff0;
  --blue-line: #bddcde;
  --gold: #8a6900;
  --gold-soft: #c7b47a;
  --green: #173728;
  --green-2: #18402e;
  --green-soft: #275542;
  --white-glass: rgba(255, 255, 255, 0.46);
  --shadow: 0 28px 90px rgba(23, 55, 40, 0.12);
  --radius-soft: clamp(18px, 2.2vw, 34px);
  --radius-small: clamp(10px, 1.2vw, 18px);
  --max: 1120px;
  --serif: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--green);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  background-image:
    linear-gradient(rgba(232,244,243,0.72), rgba(232,244,243,0.72)),
    url("assets/klangholz-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

a {
  color: inherit;
  text-decoration-color: rgba(138,105,0,0.45);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--gold);
}

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

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: white;
  padding: .8rem 1rem;
  z-index: 999;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(232,244,243,0.72);
  border-bottom: 1px solid rgba(199,180,122,0.34);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  font-family: var(--sans);
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-2);
}

nav a {
  text-decoration: none;
}

.section {
  padding: clamp(72px, 8vw, 130px) 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
}

.hero-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .8fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.kicker {
  margin: 0 0 1.15rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

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

h1 {
  margin-bottom: .25em;
  font-size: clamp(4rem, 8vw, 8.25rem);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--gold);
}

.hero h2 {
  margin-bottom: .6em;
  font-size: clamp(2rem, 3.6vw, 4.4rem);
  line-height: 1.02;
  font-weight: 500;
  color: var(--gold);
}

h2 {
  margin-bottom: .65em;
  font-size: clamp(2.35rem, 4.8vw, 5.8rem);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--gold);
}

h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--green);
}

.lead {
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--green-2);
}

.hero-copy > p:not(.kicker):not(.lead) {
  max-width: 740px;
  font-size: 1.42rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.2rem;
  border: 1px solid var(--gold);
  background: rgba(138,105,0,.09);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255,255,255,.44);
  border-color: rgba(199,180,122,.72);
  color: var(--green);
}

.portrait-card {
  align-self: center;
  padding: 1.25rem;
  background: var(--white-glass);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(199,180,122,.85);
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.56), rgba(255,255,255,.56)),
    url("assets/klangholz-bg.jpg");
  background-size: cover;
  background-position: center;
}

.portrait-placeholder span {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.portrait-card p {
  margin: 1rem 0 0;
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.4;
  color: var(--green-soft);
}

.text-block {
  padding-top: .4rem;
  font-size: 1.36rem;
}

.text-block p {
  max-width: 680px;
}

.worlds {
  background: rgba(255,255,255,0.24);
  border-block: 1px solid rgba(199,180,122,.25);
}

.worlds-grid {
  display: grid;
  grid-template-columns: .82fr 1fr 1fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
}

.world-title h2 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.4rem);
}

.world-card {
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}

.world-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.world-card div {
  padding: 1.55rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}

.cards article,
.timeline article,
.contact-card {
  padding: 1.35rem;
  background: rgba(255,255,255,.43);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 16px 46px rgba(23,55,40,.08);
}

.cards p,
.timeline p,
.contact-card p {
  margin-bottom: 0;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
  font-family: var(--sans);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inline-list li {
  border: 1px solid rgba(199,180,122,.65);
  padding: .38rem .62rem;
  background: rgba(255,255,255,.28);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact {
  background: rgba(220,239,240,.74);
}

.contact-card {
  font-size: 1.2rem;
}

.contact-card a {
  color: var(--green);
}

.site-footer {
  padding: 2rem 0;
  background: rgba(23,55,40,.09);
  border-top: 1px solid rgba(199,180,122,.3);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--green-soft);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0;
}

@media (max-width: 880px) {
  body {
    background-attachment: scroll;
    background-size: auto, 1100px auto;
    background-position: center top;
    background-repeat: repeat-y;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .hero-grid,
  .two-column,
  .contact-grid,
  .worlds-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .world-title h2 {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .cards,
  .timeline {
    grid-template-columns: 1fr;
  }

  .world-card img {
    height: 260px;
  }

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


/* v1.1 Portrait-Ergänzung */
.portrait-card-photo {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: var(--shadow);
}

.portrait-card-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(199,180,122,.72);
  filter: saturate(.9) contrast(.98);
}


/* v1.2 – dynamische Rundungen im Stil der neuen Akquise-Materialien */
.button,
.portrait-card,
.portrait-card-photo img,
.world-card,
.world-card img,
.cards article,
.timeline article,
.contact-card {
  border-radius: var(--radius-soft);
}

.world-card {
  overflow: hidden;
}

.button {
  border-radius: var(--radius-small);
}

.inline-list li {
  border-radius: var(--radius-small);
}

.portrait-card-photo {
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.portrait-card-photo img {
  display: block;
}


/* v1.4 – Sprachumschalter */
.lang-switch {
  color: var(--green-soft);
  opacity: .86;
}

.lang-switch strong {
  color: var(--gold);
  font-weight: 700;
}

.lang-switch a {
  text-decoration: none;
}


/* v1.5 – Datenschutz/Fonts
   Externe Google-Font-Aufrufe wurden aus dem HTML entfernt.
   Die Seite nutzt nun lokale/systemeigene Schrift-Fallbacks. */

/* v1.5 – Rechtliche Unterseiten */
body main.section .text-block h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  margin-top: 2rem;
  margin-bottom: .7rem;
}


/* v1.7 – personenbezogene Marke statt cw-audio als Hauptname */
.wordmark {
  font-size: clamp(0.92rem, 1.5vw, 1.18rem);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  white-space: nowrap;
}
