/* ============================================================
   Yvonne Mattner Coaching – Stylesheet im Stil der Flyer
   Farben: Eisblau, Beerenrot, Türkis / dunkles Schiefergrau
   Schriften:
     Fließtext   – Coco Gothic (cdnfonts, Fallback Didact Gothic)
     Headlines   – Didact Gothic (Google Fonts)
     Das Coaching – Bebas Neue Cyrillic (Fallback: Bebas Neue)
     Unterschrift – Euphoria Script (Google Fonts)
   ============================================================ */

/* Coco Gothic (Trial-Schnitte von cdnfonts). Die Trial-Fonts ersetzen
   Ziffern durch ein Wasserzeichen – deshalb schließt unicode-range die
   Ziffern (U+30–39) aus, sie fallen auf Didact Gothic zurück.
   Für den Livegang: lizenzierte WOFF2-Dateien nach assets/fonts/ legen
   und die src-Angaben hier austauschen. */

@font-face {
  font-family: "Coco Gothic";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Coco Gothic Light"),
    url("https://fonts.cdnfonts.com/s/18222/Coco-Gothic-Light-trial.woff") format("woff");
  unicode-range: U+00-2F, U+3A-10FFFF;
}

@font-face {
  font-family: "Coco Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Coco Gothic"),
    url("https://fonts.cdnfonts.com/s/18222/Coco-Gothic-Regular-trial.woff") format("woff");
  unicode-range: U+00-2F, U+3A-10FFFF;
}

@font-face {
  font-family: "Coco Gothic";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Coco Gothic Italic"),
    url("https://fonts.cdnfonts.com/s/18222/Coco-Gothic-Italic-trial.woff") format("woff");
  unicode-range: U+00-2F, U+3A-10FFFF;
}

@font-face {
  font-family: "Coco Gothic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Coco Gothic Bold"),
    url("https://fonts.cdnfonts.com/s/18222/Coco-Gothic-Bold-trial.woff") format("woff");
  unicode-range: U+00-2F, U+3A-10FFFF;
}

:root {
  --ice: #e2edf2;
  --ice-deep: #d5e6ed;
  --paper: #eff6f9;
  --ink: #2c3844;
  --ink-soft: #4f6170;
  --berry: #a5195e;
  --berry-deep: #8a1350;
  --teal: #74bcc1;
  --teal-light: #a9d8db;

  --font-body: "Coco Gothic", "Didact Gothic", "Century Gothic", sans-serif;
  --font-head: "Didact Gothic", "Century Gothic", sans-serif;
  --font-display: "Bebas Neue Cyrillic", "Bebas Neue", "Didact Gothic", sans-serif;
  --font-script: "Euphoria Script", cursive;

  --section-pad: clamp(64px, 10vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--ice);
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1.4em;
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: normal;
  color: var(--berry);
}

/* ---------- Typografie ---------- */

h1,
h2,
h3 {
  margin: 0 0 1em;
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
}

h1 {
  font-size: clamp(1.55rem, 4.6vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: 0.12em;
}

h2 {
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  line-height: 1.45;
  letter-spacing: 0.16em;
}

h3 {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.5;
  letter-spacing: 0.14em;
}

/* „Das Coaching“ – Bebas Neue Cyrillic */
.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--berry);
}

.lead {
  max-width: 34rem;
  margin-inline: auto;
  font-size: clamp(1.1rem, 2.4vw, 1.25rem);
}

.signature {
  margin: 1.2em 0 0;
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1.1;
  color: #fff;
}

.signature--berry {
  margin-top: 0.1em;
  color: var(--berry);
}

/* ---------- Layout-Bausteine ---------- */

.container {
  width: min(1060px, 100% - 48px);
  margin-inline: auto;
}

.narrow {
  max-width: 46rem;
  text-align: center;
}

.section {
  padding: var(--section-pad) 0;
  background: var(--ice);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(226, 237, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44, 56, 68, 0.12);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(44, 56, 68, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__signet {
  width: 46px;
  height: auto;
  flex: none;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--berry);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
}

.site-nav a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--berry);
  border-color: var(--berry);
}

.site-nav__cta {
  padding: 10px 18px !important;
  background: var(--berry);
  color: #fff !important;
  border-bottom: none !important;
  transition: background-color 160ms ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--berry-deep);
}

/* Mobile-Navigation */

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: none;
  border: 1px solid rgba(44, 56, 68, 0.3);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle__bar {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 9vw, 110px);
  background: var(--ice);
  text-align: center;
}

.hero__signet {
  width: clamp(110px, 17vw, 160px);
  height: auto;
  margin-inline: auto;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.hero h1 em {
  color: var(--berry);
}

.hero .button {
  margin-top: 2.2em;
}

/* Marken-Band */

.brand-band {
  padding: clamp(40px, 7vw, 72px) 24px;
  background: var(--berry);
  text-align: center;
}

.brand-band__name {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: 0.12em;
  color: var(--teal-light);
}

.brand-band__word {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-photo {
  margin: 0;
  background: var(--ice-deep);
}

.hero-photo img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  object-position: 55% 22%;
}

/* ---------- Fragen-Block ---------- */

.questions {
  margin-top: clamp(36px, 6vw, 56px);
}

.questions__intro {
  margin-bottom: 1.2em;
  font-family: var(--font-head);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.questions__item {
  margin: 0 0 0.55em;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  letter-spacing: 0.08em;
  color: var(--berry);
}

/* ---------- Beerenrote Bänder ---------- */

.band {
  padding: var(--section-pad) 0;
  background: var(--berry);
  color: #fff;
  text-align: center;
}

.band__signet {
  width: 88px;
  height: auto;
  margin-inline: auto;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.band blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  line-height: 1.8;
}

.band__title {
  color: #fff;
  margin-bottom: 0.9em;
}

.band__list {
  margin: 1.6em 0 2.4em;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5em;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--teal-light);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-block;
  padding: 17px 34px;
  background: var(--berry);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--berry-deep);
  transform: translateY(-2px);
}

.button--light {
  background: var(--ice);
  color: var(--berry);
}

.button--light:hover,
.button--light:focus-visible {
  background: #fff;
  color: var(--berry-deep);
}

/* ---------- Pull-Quote ---------- */

.pull-quote {
  margin: 1.8em auto;
  max-width: 30rem;
  padding: 1.4em 0;
  border-top: 1px solid rgba(44, 56, 68, 0.2);
  border-bottom: 1px solid rgba(44, 56, 68, 0.2);
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--berry);
}

/* ---------- Listen ---------- */

.triangle-list {
  margin: 1.4em 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9em;
}

.triangle-list li {
  position: relative;
  padding-left: 30px;
}

.triangle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 13px;
  height: 12px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: var(--teal);
}

.qualifications {
  margin: clamp(36px, 6vw, 56px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.qualifications li {
  display: grid;
  gap: 2px;
  padding: 1.1em 0;
  border-top: 1px solid rgba(44, 56, 68, 0.18);
}

.qualifications li:last-child {
  border-bottom: 1px solid rgba(44, 56, 68, 0.18);
}

.qualifications strong {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.qualifications span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Zweispalter ---------- */

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 80px);
}

/* ---------- Kontakt ---------- */

.contact-lines {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: clamp(32px, 5vw, 48px) 0;
}

.contact-lines a {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: color 160ms ease;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--berry);
}

.contact-lines__label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.closing {
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 28px 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.site-footer a {
  color: var(--teal-light);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ---------- Einblend-Animation (nur mit JS aktiv) ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}

/* ---------- Responsive ---------- */

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    background: var(--ice);
    border-bottom: 1px solid rgba(44, 56, 68, 0.12);
    box-shadow: 0 18px 30px rgba(44, 56, 68, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(44, 56, 68, 0.1);
  }

  .site-nav__cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero-photo img {
    max-height: 60vh;
  }
}
