/* ============================================================
   Ronas Barmaky – Psychotherapie Graz
   Design: Warm, modern, professional
   Palette: Burgundy #7C2D3E | Forest Green #2D4A3E | Cream #F5EFE8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --burgundy:       #7C2D3E;
  --burgundy-dark:  #5E1E2C;
  --burgundy-light: #A34558;
  --green:          #2D4A3E;
  --green-light:    #3D6154;
  --cream:          #F5EFE8;
  --cream-dark:     #EDE5DA;
  --sand:           #D4C5B0;
  --text-dark:      #2A2320;
  --text-mid:       #5A4F4A;
  --text-light:     #8A7F7A;
  --white:          #FDFAF7;

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;

  --shadow-soft: 0 8px 40px rgba(44,26,22,0.08);
  --shadow-card: 0 4px 24px rgba(44,26,22,0.10);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Skip Link (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--burgundy);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── Focus Styles (Accessibility) ── */
*:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-mid); font-size: 1rem; }

.serif-italic { font-style: italic; }

/* ── Layout Utilities ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,45,62,0.30);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,74,62,0.30);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,26,22,0.08);
  padding: 0.8rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.nav__logo span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  position: relative;
  transition: var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--burgundy); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.btn-primary { color: #fff; }
.nav__links a.btn-primary:hover { color: #fff; }
.nav__cta { margin-left: 1rem; padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}
.nav__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream-dark), transparent 70%);
}
.hero__bg-circle--1 {
  width: 600px; height: 600px;
  right: -150px; top: -100px;
  background: radial-gradient(circle, rgba(212,197,176,0.5), transparent 70%);
}
.hero__bg-circle--2 {
  width: 400px; height: 400px;
  left: -100px; bottom: -50px;
  background: radial-gradient(circle, rgba(45,74,62,0.08), transparent 70%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--burgundy);
}
.hero__title { margin-bottom: 1.5rem; }
.hero__title .line { display: block; }
.hero__title .line--italic { font-style: italic; color: var(--burgundy); }
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.hero__link {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.hero__link:hover { color: var(--burgundy); gap: 0.75rem; }

.hero__visual { position: relative; z-index: 2; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.hero__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__badge-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero__badge-text { font-size: 0.8rem; }
.hero__badge-text strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--text-dark);
}

/* Wave divider */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   VALUES STRIP
   ============================================================ */
.values {
  background: var(--white);
  padding: 4rem 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.values__item {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.values__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--cream-dark);
}
.values__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  transition: var(--transition);
}
.values__item:hover .values__icon {
  background: var(--burgundy);
  transform: scale(1.08);
}
.values__item:hover .values__icon svg {
  color: var(--green-light);
  stroke: var(--green-light);
}
.values__item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.values__item p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about__image-wrap {
  position: sticky;
  top: 6rem;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__decor {
  position: absolute;
  width: 160px; height: 160px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  bottom: -2rem; right: -2rem;
  z-index: -1;
}
.about__decor-2 {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--burgundy);
  border-radius: 50%;
  top: -1.5rem; left: -1.5rem;
  opacity: 0.15;
}
.about__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1rem;
}
.about__content h2 { margin-bottom: 1.5rem; }
.about__content p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.9; }
.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.about__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about__cred::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  margin-top: 0.55rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--green); overflow: hidden; position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}
.services__header .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.services__header h2 { color: #fff; }
.services__header p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 1rem auto 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.service-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.service-card__link:hover { color: #fff; gap: 0.65rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--white); }
.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.process__content .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.process__content h2 { margin-bottom: 1.5rem; }
.process__content p { margin-bottom: 2rem; }
.process__steps { display: flex; flex-direction: column; gap: 0; }
.process__step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}
.process__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 3.5rem; bottom: 0;
  width: 1px;
  background: var(--cream-dark);
}
.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--burgundy);
  font-weight: 600;
}
.step-content h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  padding-top: 0.3rem;
}
.step-content p { font-size: 0.9rem; color: var(--text-light); }

.process__cta-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: sticky;
  top: 6rem;
}
.process__cta-box h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.process__cta-box p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.process__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-item svg { color: var(--burgundy); flex-shrink: 0; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-section {
  background: var(--burgundy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  font-family: var(--ff-serif);
  font-size: 30rem;
  color: rgba(255,255,255,0.04);
  top: -6rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.quote-section blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.quote-section cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__info h2 { margin-bottom: 1rem; }
.contact__info > p { margin-bottom: 2rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}
.contact__detail-icon svg { color: var(--burgundy); }
.contact__detail-text { padding-top: 0.2rem; }
.contact__detail-text strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.contact__detail-text span { font-size: 0.9rem; color: var(--text-light); }

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.contact__form > p { font-size: 0.9rem; margin-bottom: 2rem; }
.form-group {
  margin-bottom: 1.25rem;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input[type="checkbox"] {
  width: auto;
  appearance: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(124,45,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.required-star { color: var(--burgundy); }
.field-error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group.has-error .field-error { display: block; }
.form-group.has-error label { color: #c0392b; }
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.form-group--checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--burgundy);
}
.form-group--checkbox label {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-transform: none;
  letter-spacing: 0;
}
.form-group--checkbox label a {
  color: var(--burgundy);
  text-decoration: underline;
}
.form-group--checkbox .field-error { width: 100%; }
.form-group.has-error.form-group--checkbox label { color: #c0392b; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  transition: var(--transition);
}
.form-note--error {
  color: #c0392b;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer__brand .nav__logo { color: #fff; }
.footer__brand .nav__logo span { color: rgba(255,255,255,0.5); }
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.8;
}
.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__col ul li a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* Intersection observer triggered */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO QUOTE
   ============================================================ */
.hero__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  border-left: 2px solid var(--burgundy);
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero__quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* ============================================================
   ABOUT MOTIVATIONS LIST
   ============================================================ */
.about__motivations {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about__motivations li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.about__motivations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
}

/* ============================================================
   SERVICES NOTE
   ============================================================ */
.services__note {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.service-card__icon svg {
  stroke: rgba(255,255,255,0.7);
}
.service-card:hover .service-card__icon svg {
  stroke: #fff;
}

/* ============================================================
   KOSTEN
   ============================================================ */
.kosten {
  background: var(--white);
}
.kosten__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.kosten__content .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.kosten__content h2 { margin-bottom: 1rem; }
.kosten__content p { margin-bottom: 2.5rem; }
.kosten__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.kosten__card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
}
.kosten__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.kosten__price {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.kosten__price span {
  font-size: 1rem;
  color: var(--text-light);
}
.kosten__card p {
  font-size: 0.9rem;
  color: var(--text-light);
}
.kosten__notes {
  background: var(--cream);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 2rem;
  text-align: left;
}
.kosten__notes p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.kosten__notes p:last-child { margin-bottom: 0; }

/* ============================================================
   PREFERS-REDUCED-MOTION (Accessibility)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .fade-up { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Body scroll lock when mobile menu open */
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .nav__links a { font-size: 1.4rem; }
  .nav__links .btn { display: none; }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .hero__inner,
  .about__inner,
  .process__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__visual { order: -1; }
  .hero__badge { left: 0; }

  /* Sticky zurücksetzen auf Mobile */
  .about__image-wrap { position: relative; top: auto; }
  .process__cta-box  { position: relative; top: auto; }

  /* Dekokreise beim Foto auf Mobile ausblenden (overflow) */
  .about__decor, .about__decor-2 { display: none; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .values__item::after { display: none; }
  .kosten__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 4rem 0; }
  .contact__form { padding: 2rem 1.5rem; }
  .process__cta-box { padding: 2rem 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .hero__badge { position: static; margin-top: 1.5rem; }
}
