/* Psychologie Gottlich – One-Pager */

:root {
  --bg: #f6f3ec;
  --surface: #fffcf7;
  --text: #1a2624;
  --text-muted: #4d5c58;
  --primary: #2d5a52;
  --primary-deep: #1e3d37;
  --accent: #c17f59;
  --water: #5b8fa8;
  --bio: #4a9e6e;
  --line: rgba(45, 90, 82, 0.12);
  --shadow: 0 20px 50px rgba(26, 38, 36, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.65rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

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

.container {
  width: min(72rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 243, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(26, 38, 36, 0.06);
}

.header-inner {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  text-decoration: none;
  color: inherit;
  line-height: 1.2;
}

.logo-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  gap: 0.25rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(246, 243, 236, 0.97) 0%, rgba(246, 243, 236, 0.88) 42%, rgba(246, 243, 236, 0.55) 68%, rgba(246, 243, 236, 0.2) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 35%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(72rem, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 22rem);
  gap: 2.5rem 4rem;
  align-items: center;
}

.hero-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5rem;
  color: var(--primary-deep);
}

.hero-titles {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero-titles .sep {
  opacity: 0.45;
  margin-inline: 0.35rem;
}

.hero-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  max-width: 36rem;
}

.hero-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--primary-deep);
  margin: 0 0 0.75rem;
}

.hero-quote footer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text-muted);
}

.hero-audience {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--primary-deep);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0;
}

/* Angebot */
.angebot {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.angebot-intro {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.leistung-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.leistung-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.leistung-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.angebot-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #3d7268 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  max-width: 52rem;
  margin-inline: auto;
}

.angebot-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.angebot-highlight p {
  margin: 0 0 1rem;
  opacity: 0.92;
}

.angebot-highlight p:last-child {
  margin-bottom: 0;
}

.highlight-emphasis {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  opacity: 1 !important;
}

/* Über mich */
.ueber-grid {
  display: grid;
  grid-template-columns: minmax(0, 22rem) 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.ueber-portrait figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ueber-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.ueber-quote {
  margin: 1.75rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.ueber-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--primary);
  margin: 0 0 1rem;
}

.ueber-quote p:last-child {
  margin-bottom: 0;
}

.cv-block {
  margin-bottom: 2.5rem;
}

.cv-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--primary-deep);
}

.cv-block h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.25rem 0 0.5rem;
}

.cv-block ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.cv-block li {
  margin-bottom: 0.4rem;
}

.qual-list li::marker {
  color: var(--bio);
}

.ueber-persoenlich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.persoenlich-card {
  margin: 0;
}

.persoenlich-card img {
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.persoenlich-card figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.raum-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 4rem;
  max-height: 22rem;
  overflow: hidden;
}

.raum-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.faq-list {
  max-width: 44rem;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: var(--bg);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--primary-deep);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-item a {
  font-weight: 500;
}

/* Kontakt */
.kontakt {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.kontakt-adresse {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.kontakt-adresse a {
  text-decoration: none;
  font-weight: 500;
}

.kontakt-adresse a:hover {
  text-decoration: underline;
}

.kontakt-hinweis {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.kostenzuschuss {
  background: var(--bg);
  border-left: 4px solid var(--water);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2.5rem;
}

.kostenzuschuss h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.kostenzuschuss p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.kontakt-form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: var(--primary-deep);
}

.kontakt-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  margin-bottom: 1.1rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 82, 0.15);
}

.form-datenschutz {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.form-success {
  background: rgba(74, 158, 110, 0.12);
  border: 1px solid var(--bio);
  color: var(--primary-deep);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.form-fallback {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  text-align: center;
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Footer */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}

.site-footer a {
  color: #b8ddd4;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #fff;
}

.footer-block p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.impressum-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.impressum-list li {
  margin-bottom: 0.65rem;
  padding-left: 0;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 1.25rem !important;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    max-width: 18rem;
    order: -1;
  }

  .ueber-grid,
  .kontakt-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ueber-portrait {
    max-width: 20rem;
  }

  .ueber-persoenlich {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .persoenlich-card figcaption {
    margin-bottom: 2.75rem;
  }

  .persoenlich-card:last-child figcaption {
    margin-bottom: 0;
  }
}

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(246, 243, 236, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1.05rem;
  }

  .raum-strip {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .section {
    padding: 4rem 0;
  }
}

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

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