:root {
  --accent: #8b0a50;
  --accent-dark: #65053a;
  --ink: #211b20;
  --muted: #6d646a;
  --paper: #fffdfb;
  --soft: #dcdadb;
  --line: rgba(33, 27, 32, 0.12);
  --radius: 12px;
  --shadow: 0 18px 50px rgba(51, 23, 40, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable-Italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-feature-settings:
    "cv05" 1,
    "liga" 1,
    "calt" 1;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
}

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: white;
}

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  color: white;
}

.nav-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: auto;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.02em;
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a:not(.button) {
  text-decoration: none;
  color: #d65a9a;
  opacity: 0.9;
}

.nav-links a:not(.button):hover {
  color: #f08bb9;
  opacity: 1;
}

.hero {
  min-height: 70vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #dedbd8;
}

.hero-impressum {
  min-height: 70vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #6d646a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(25, 14, 20, 0.83) 0%,
      rgba(25, 14, 20, 0.56) 43%,
      rgba(25, 14, 20, 0.05) 72%
    ),
    url("assets/header.webp");
  background-size: cover;
  background-position: center 30%;
}

.hero-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: white;
  padding: 9rem 0 5.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  font-weight: 750;
  margin: 0 0 1rem;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.hero-copy {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  margin: 1.6rem 0 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
}

.button:hover {
  background: var(--accent-dark);
}

main {
  overflow: hidden;
}

.intro {
  width: min(calc(100% - 2rem), 900px);
  margin: auto;
  padding: 6rem 0 3rem;
  text-align: center;
}

.intro h2,
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.intro h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin: 0 0 1.3rem;
}

.intro p {
  max-width: 760px;
  margin: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.topics {
  margin-top: 1.3rem;
  color: var(--accent);
  font-weight: 750;
  font-size: 0.95rem;
}

.offers {
  width: min(calc(100% - 2rem), var(--max));
  margin: auto;
  padding: 3rem 0 6rem;
}

.section-kicker {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin: 0 0 3rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 520px;
  margin: 0 0 2rem;
  overflow: hidden;
  background: white;
}

.split.reverse .visual {
  order: 2;
}

.visual {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(1rem, 1vw, 2rem);
}

.visual img {
  height: clamp(250px, 40vw, 420px);
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.copy {
  /* padding: clamp(2rem, 5vw, 4.5rem); */
  padding: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(1rem, 1vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.number {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0.65rem 0 0.5rem;
}

.meta {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.copy ul {
  padding: 0;
  list-style: none;
}

.copy li {
  position: relative;
  padding: 0.15rem 0 0.15rem 1.4rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

.copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.9rem;
}

.about {
  background: var(--soft);
  padding: 7rem 1rem;
}

.about-grid {
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.about h2 {
  margin-top: 0;
}

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.18;
  color: var(--accent);
  margin: 0;
}

.timeline {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.station {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.station strong {
  color: var(--accent);
  font-size: 0.85rem;
}

.station span {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

.contact {
  background: var(--accent);
  color: white;
  padding: 7rem 1rem;
}

.contact-inner {
  width: min(100%, 900px);
  margin: auto;
  text-align: center;
}

.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 0 0 1.5rem;
}

.contact p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: 0.9;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact .button {
  background: white;
  color: var(--accent);
}

.button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

footer {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* --- NEW: stack split/about earlier so the visual isn't squeezed --- */
@media (max-width: 920px) {
  .split,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .visual {
    order: 0;
  }

  .visual {
    min-height: 320px;
  }

  /* when stacked, let the image breathe a bit more */
  .visual img {
    height: clamp(280px, 50vw, 400px);
  }
}

@media (max-width: 760px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::before {
    background-image:
      linear-gradient(
        0deg,
        rgba(25, 14, 20, 0.88) 0%,
        rgba(25, 14, 20, 0.35) 70%
      ),
      url("assets/header.webp");
    background-position: 63% center;
  }

  .hero-inner {
    padding-bottom: 3rem;
  }
}

/*

@media (max-width: 760px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .eyebrow {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::before {
    background-image:
      linear-gradient(
        0deg,
        rgba(25, 14, 20, 0.88) 0%,
        rgba(25, 14, 20, 0.35) 70%
      ),
      url("assets/header.webp");
    background-position: 63% center;
  }

  .hero-inner {
    padding-bottom: 3rem;
  }

  .split,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .visual {
    order: 0;
  }

  .visual {
    min-height: 320px;
  }

  .station {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
*/

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

  * {
    transition: none !important;
  }
}

@media (max-width: 560px) {
  .nav-links {
    display: none;
  }
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

a[aria-label="LinkedIn"] {
  color: black; /* LinkedIn brand blue */
  display: inline-block;
  transition: opacity 0.2s ease;
}

a[aria-label="LinkedIn"]:hover {
  opacity: 0.7;
}
