@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

:root {
  /* Farbwelt: bunt, kultur- und magazininspiriert */
  --bg-color: #eaf4fb;       /* sehr helles Blau */
  --bg-soft: #f3e4ff;        /* sanftes Lila für Flächen */
  --bg-band: #ffeef0;        /* zartes Pink für Blöcke */
  --bg-band-soft: #fff7d6;   /* helles Gelb für Kontrast */
  --epilogue-bg: #deeef9;    /* helles Blau für Epilog */
  --epilogue-border: #ff7aa8;

  --text-color: #231529;        /* dunkles, aber kein pures Schwarz */
  --muted-text-color: #74627a;
  --accent-color: #ff5c7a;      /* Pink/Koralle */
  --accent-ink: #241444;        /* tiefes Lila als „Ink“ */
  --accent-yellow: #ffc857;     /* kräftiges Gelb */
  --accent-teal: #2f8f83;       /* gesättigtes Grünblau */

  /* Layout & Typografie */
  --max-width: 960px;
  --font-size-base: 16px;
  --line-height-base: 1.7;
  --spacing-section: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #eaf4fb;
  color: var(--text-color);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

/* Site-Navigation */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e1f47;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e1f47;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #2e1f47;
  display: block;
}

@media (max-width: 900px) {
  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Grund-Typografie */

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0 0 1.1em;
  color: var(--text-color);
}

/* Grundhierarchie: Headlines vs. Fließtext */

h1 {
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(2rem, 8vw, 4.4rem);
  line-height: 0.95;
  color: var(--accent-ink);
}

main h2 {
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

main h2::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-top: 0.65rem;
  background-color: var(--accent-color);
}

h3 {
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
}

strong {
  font-weight: 600;
  color: var(--accent-ink);
}

em {
  font-style: italic;
  color: var(--accent-color);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-text-color);
}

.lede {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--bg-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-color);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.section {
  padding: var(--spacing-section) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section--hero {
  padding-top: calc(var(--spacing-section) * 1.4);
  padding-bottom: calc(var(--spacing-section) * 1.4);
}

/* Rhythmus der Sections: tight / loose / tight */

#leistungen.section,
#ueber-mich.section,
#kontakt.section {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

#auswahl-arbeiten.section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section + .section {
  margin-top: -0.5rem;
}

/* Farbbänder für visuelle Struktur */

#leistungen {
  background-color: #fff5e0;
}

#ueber-mich {
  background-color: #eeeaf8;
}

#arbeiten {
  background-color: #f5f2ee;
}

#kontakt {
  background-color: #fde8d8;
}

/* Leistungen – Grid */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .service-group {
    min-width: 0;
  }
}

.service-group p:last-of-type {
  margin-bottom: 0;
}

.services-note {
  margin-top: 2.25rem;
  margin-bottom: 0;
}

/* Über mich – Blöcke */

.about-block {
  max-width: 40rem;
}

.about-block.about-full-width {
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.about-block + .about-block {
  margin-top: 0.75rem;
}

.about-list-heading {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.925rem;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about-stations {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-so-heading {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about-stations-heading {
  margin: 0 0 0.5rem;
}

.about-stations-text {
  margin: 0 0 0.75rem;
}

.about-stations-link {
  margin: 0;
}

.about-full-width {
  max-width: none;
}

.about-now,
.about-philosophy {
  margin-top: 0.75rem;
}

.about-now.about-full-width,
.about-philosophy.about-full-width {
  max-width: none;
}

/* Globale Links (außer Navigation) */

main a,
.site-footer a {
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 0.08rem;
}

main a:hover,
main a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* Neutrale Bild-Platzhalter */

.image-placeholder {
  width: 100%;
  min-height: 220px;
  background-color: var(--bg-soft);
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.image-placeholder--tall {
  min-height: 320px;
}

.image-placeholder--narrow {
  max-width: 420px;
}

/* Hero-Layout */

.hero {
  display: block;
}

.hero-heading {
  min-width: 0;
}

.hero-name {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
}

.hero-name-last {
  word-break: keep-all;
  display: inline-block;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.kicker-word {
  color: var(--accent-color);
}

.hero-copy {
  min-width: 0;
  max-width: none;
  margin-top: 1rem;
}

.hero-copy p:first-of-type {
  font-style: italic;
  font-weight: 500;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--accent-color);
  display: inline-block;
}

.hero-copy p:last-of-type {
  margin-top: 0.5rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  width: 100%;
}

.hero-gallery-item {
  margin: 0;
}

.hero-gallery-item .image-placeholder--square {
  width: 100%;
  aspect-ratio: 1;
  min-height: 140px;
  border-radius: 0.5rem;
}

.hero-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}

.hero-gallery-item:nth-child(1) img {
  object-position: center 10%;
}

.hero-gallery-item:nth-child(2) img {
  object-position: center 30%;
}

.hero-gallery-item:nth-child(3) img {
  object-position: center 15%;
}

.hero-photo-credit {
  font-size: 0.65rem;
  color: var(--muted-text-color);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  opacity: 0.45;
}

.hero-gallery-item:nth-child(1) .image-placeholder--square {
  background-color: var(--bg-band);
}

.hero-gallery-item:nth-child(2) .image-placeholder--square {
  background-color: var(--bg-band-soft);
}

.hero-gallery-item:nth-child(3) .image-placeholder--square {
  background-color: rgba(47, 143, 131, 0.12);
}

/* Auswahl Arbeiten */

.work-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.work-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.work-item:first-child {
  border-top: none;
}

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

.work-item-link:hover {
  text-decoration: underline;
}

.work-item p {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.work-meta {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-text-color);
}

.workshop-photo {
  margin: 2rem 0 0;
}

.work-link {
  margin: 2rem 0 0;
}

.work-link a {
  text-decoration: none;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 0.15rem;
  color: var(--accent-color);
}

@media (min-width: 900px) {
  .work-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
  }

  .work-item {
    border-top: none;
    padding: 0;
  }
}

/* Bücher, Reisen & gute Gespräche */

.books-intro {
  margin-bottom: 0.5rem;
}


.books-suggestion {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  background: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.books-suggestion::before {
  display: none;
}

.book-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.book-left {
  flex: 1;
  min-width: 0;
}

.books-title {
  font-size: 0.85rem;
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--accent-ink);
  display: inline;
  margin: 0;
}

.books-author {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted-text-color);
  display: inline;
  margin: 0;
}

.books-author::before {
  content: ' · ';
}

.books-stars {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin: 2px 0 1px;
}

.books-date {
  font-size: 0.75rem;
  color: var(--muted-text-color);
  margin: 0;
}

.books-reload {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.books-reload-btn {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--muted-text-color);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
}

.books-reload-btn:hover {
  color: var(--accent-color);
  opacity: 1;
}

.contact-col-icon {
  font-size: 1.1rem;
  color: var(--accent-ink);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-col .books-suggestion {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 0.5px solid rgba(0,0,0,0.15);
  background: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.contact-col .books-suggestion::before {
  display: none;
}

.contact-col .books-title {
  font-size: 0.875rem;
  display: inline;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-col .books-author {
  font-size: 0.875rem;
  display: inline;
  margin: 0;
}

.contact-col .books-author::before {
  content: ' · ';
}

.contact-col .books-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3px;
}

.contact-col .books-stars {
  font-size: 0.8rem;
  display: inline;
  margin: 0;
}

.contact-col .books-date {
  font-size: 0.75rem;
  color: var(--muted-text-color);
  display: inline;
  margin: 0;
}

.contact-col .books-reload {
  margin: 0.4rem 0 0;
  padding: 0;
}

.contact-col .books-reload-btn {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text-color);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 0 0 1px;
  cursor: pointer;
  font-family: "Space Grotesk", system-ui, sans-serif;
  opacity: 0.8;
}

.contact-col .books-reload-btn:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  opacity: 1;
}

.books-cta {
  margin: 0.5rem 0 0.75rem 0;
}

.books-cta a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 0.15rem;
  color: var(--text-color);
}

#testimonials {
  background-color: #e0f4ef;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  min-height: 160px;
  margin-bottom: 1.5rem;
}

.testimonial-slide {
  display: none;
  margin: 0;
  padding: 0;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  font-family: "Fraunces", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}

.testimonial-slide strong {
  color: var(--accent-ink);
  font-weight: 700;
}

.testimonial-slide footer {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text-color);
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
}

.testimonial-btn {
  background: none;
  border: 0.5px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.testimonial-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.testimonial-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 0.5rem;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot.active {
  background: var(--accent-color);
}

/* Kontakt Grid */
#kontakt {
  background-color: #fde8d8;
}

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

.contact-col p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0.5rem 0 0;
}

.contact-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color);
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 0.4rem;
  padding-bottom: 0.35rem;
  border-bottom: 1.5px solid var(--accent-color);
  display: inline-block;
}

.contact-col-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-cta-link {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 0.1rem;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.contact-cta-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 0.6rem 0;
  cursor: pointer;
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  text-align: left;
}

.accordion-toggle[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.accordion-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-color);
  border-radius: 2px;
}

.accordion-icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.accordion-icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-content {
  margin-top: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.5);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 0.05rem;
}

.footer-legal a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.site-footer {
  padding: 2rem 0 3rem;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .nav-links a {
    font-size: 0.8rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section--hero {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .section--epilogue {
    margin-top: 1.6rem;
    padding-top: 3.8rem;
    padding-bottom: 4rem;
  }

  .hero-gallery {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .hero-gallery-item .image-placeholder--square {
    min-height: 100px;
  }

  .hero-name {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 1.25rem;
  }
}
