/* Rechtsanwaltskanzlei Artem Uspenskiy — Styles */

:root {
  --ink:      #1B1C20;
  --graphite: #2F3034;
  --cream:    #EFE8DE;
  --copper:   #AD5D3A;
  --copper-hell: #C0714B;
  --copper-dunkel: #8D4526;
  --text-hell: #F3ECE4;
  --text-gedaempft: #B6A998;
  --text-dunkel: #24262B;
  --text-grau: #5A5D64;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.62;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--copper); text-decoration: none; transition: color .14s linear; }
a:hover { color: var(--copper-dunkel); }

/* ---------- Kopfleiste ---------- */

.kopf {
  background: var(--ink);
  padding: clamp(20px, 4vw, 30px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.kopf img { display: block; height: clamp(64px, 8vw, 96px); width: auto; }
.kopf .zurueck { color: var(--copper-hell); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; }
.kopf .zurueck:hover { color: var(--text-hell); }

/* ---------- Fußzeile ---------- */

.fuss {
  background: var(--ink);
  color: var(--text-hell);
  padding: 24px var(--gutter) 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.fuss nav { display: flex; gap: 32px; flex-wrap: wrap; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; }
.fuss nav a { color: var(--text-hell); }
.fuss nav a:hover,
.fuss nav a.aktiv { color: var(--copper-hell); }
.fuss .copyright { font-size: 12.5px; color: var(--text-gedaempft); }

/* ---------- Beschriftungen, Überschriften, Linien ---------- */

.eyebrow { display: block; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--copper); }
.regel { display: block; width: 56px; height: 2px; background: var(--copper); margin-top: 20px; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; margin: 0; }
hr { border: 0; height: 1px; background: rgba(31, 32, 36, .14); margin: 32px 0; }

/* ---------- Kontaktzeilen mit Icon ---------- */

.kontakt { display: grid; gap: 12px; }
.kontakt div { display: flex; align-items: center; gap: 14px; }
.kontakt svg { flex: none; width: 20px; height: 20px; }
.kontakt svg { fill: none; stroke: var(--copper); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Startseite (dunkel) ---------- */

body.start { background: var(--ink); color: var(--text-hell); position: relative; overflow-x: hidden; }
body.start a { color: var(--text-hell); }
body.start a:hover { color: var(--copper-hell); }

.start main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(56px, 9vw, 120px) var(--gutter);
}

.start h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.06;
  color: var(--text-hell);
  margin: 22px 0 0;
  text-wrap: pretty;
}
.start .vorspann {
  color: var(--text-gedaempft);
  margin: 30px 0 0;
  max-width: 52ch;
  text-wrap: pretty;
}
.start .kontakt {
  margin-top: 40px;
  max-width: 440px;
  gap: 0;
  border-top: 1px solid rgba(239, 232, 222, .18);
}
.start .kontakt div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(239, 232, 222, .18);
}
.start .kontakt .fax { color: var(--text-gedaempft); }

.rail {
  position: absolute;
  right: 26px;
  top: clamp(120px, 18vw, 200px);
  writing-mode: vertical-rl;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper-hell);
}
.start .fuss { border-top: 1px solid rgba(239, 232, 222, .18); }

/* ---------- Rechtstexte (creme) ---------- */

body.rechtstext { background: var(--cream); color: var(--text-dunkel); }

.rechtstext main {
  flex: 1;
  padding: clamp(56px, 8vw, 110px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(32px, 6vw, 64px);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 720px) {
  .rechtstext main { grid-template-columns: 1fr; }
}
.rechtstext h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.1; color: #141517; margin-top: 18px; }
.rechtstext h2 { font-size: 24px; line-height: 1.2; color: #141517; margin: 0 0 12px; }
.rechtstext .text { max-width: 64ch; }
.rechtstext .text p { margin: 0 0 12px; }
.rechtstext .text p:last-child { margin-bottom: 0; }
.rechtstext .einleitung {margin-bottom: 40px !important; }
.rechtstext .kontakt a { color: var(--text-dunkel); }
.rechtstext .kontakt a:hover { color: var(--copper); }
.rechtstext .stand { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-grau); }
