@charset "UTF-8";
/* CSS Document */
:root {
  --pink: #dcaace;
  --purple: #71256c;
  --gray: #6f6f6f;
  --text: #1f1f1f;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.08);
  --soft: #faf8fa;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(36, 18, 33, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
h1,
h2,
h3 {
  margin-top: 0;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 980px;
}

.section {
  padding: 120px 0;
  scroll-margin-top: 120px;
}

.section-soft {
  background: linear-gradient(180deg, #fcfbfc 0%, #f8f4f8 100%);
}

.eyebrow {
  margin-bottom: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 500;
}

.section-intro {
  max-width: 820px;
  font-size: 18px;
  color: var(--muted);
}

.pink {
  color: var(--pink);
}

.purple {
  color: var(--purple);
}

.pink-bg {
  background: var(--pink);
}

.purple-bg {
  background: var(--purple);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.shrink {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-logo-anchor {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 70px;
  min-height: 62px;
  flex-shrink: 0;
}

.header-logo-target {
  width: 62px;
  height: 62px;
  opacity: 0;
  pointer-events: none;
}

.header-logo-final {
  position: absolute;
  left: 0;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translateY(-50%);
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.site-header.shrink .header-logo-final {
  pointer-events: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  font-family: Arial, Helvetica, sans-serif;
  color: #222222;
  font-size: 15px;
  padding: 10px 2px;
  transition: color 0.25s ease;
}

.nav-link.nav-purple:hover {
  color: var(--purple);
}

.nav-link.nav-pink:hover {
  color: var(--pink);
}

.menu-toggle {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #4e4e4e;
  border-radius: 2px;
}

/* Flying logo */
.logo-fly-layer {
  position: fixed;
  inset: 0;
  z-index: 1250;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.logo-fly-layer.active {
  opacity: 1;
}

.logo-fly {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: auto;
  object-fit: contain;
  will-change: left, top, width, height, opacity;
}

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(92vw, 420px);
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  z-index: 1300;
  transition: right 0.35s ease;
  padding: 28px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 20, 0.22);
  opacity: 0;
  visibility: hidden;
  z-index: 1250;
  transition: all 0.25s ease;
}

.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.drawer-top p {
  margin: 0;
  color: var(--gray);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}

.drawer-close {
  border: 1px solid var(--line);
  background: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  display: block;
  padding: 22px 26px;
  border-radius: 28px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.drawer-link.purple {
  background: var(--purple);
}

.drawer-link.pink {
  background: var(--pink);
}

/* Hero */
.hero {
  padding-top: 165px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 170, 206, 0.45) 0%, rgba(220, 170, 206, 0) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 37, 108, 0.16) 0%, rgba(113, 37, 108, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-text {
  position: relative;
}

.hero-logo-origin-wrap {
  margin-bottom: 34px;
}

.hero-logo-origin {
  width: clamp(180px, 24vw, 300px);
  height: auto;
  opacity: 1;
  transition: opacity 0.12s linear;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.98;
  font-weight: 500;
}

.hero-copy {
  max-width: 720px;
  font-size: 20px;
  color: var(--muted);
}

.hero-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 22px;
  min-width: 220px;
  box-shadow: var(--shadow);
}

.info-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple);
  font-size: 18px;
  font-weight: 500;
}

.info-card span {
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(113, 37, 108, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border-color: rgba(113, 37, 108, 0.18);
}

.btn-secondary:hover {
  background: #faf7fa;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.full-width {
  width: 100%;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card,
.contact-card,
.form-card,
.map-card,
.direction-card,
.legal-card,
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 30px;
}

.service-line {
  width: 84px;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  overflow: hidden;
}

.team-photo-real {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.team-content {
  padding: 28px;
}

.team-role {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.team-content h3 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 500;
}

.team-content p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  margin-top: 56px;
}

.contact-boxes {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 26px;
}

.contact-card h3,
.form-card h3,
.map-card h3,
.direction-card h3,
.legal-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 500;
}

.contact-card p,
.form-card p,
.direction-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.contact-card a:hover,
.site-footer a:hover {
  color: var(--purple);
}

.form-card {
  padding: 30px;
}

.contact-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 15px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(113, 37, 108, 0.35);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.checkbox-wrap input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

/* Directions */
.directions-layout {
  margin-top: 56px;
}

.full-width-map-card {
  width: 100%;
  margin-bottom: 28px;
  padding: 26px;
}

.map-card,
.direction-card {
  padding: 26px;
}

.map-embed {
  overflow: hidden;
  border-radius: 24px;
  margin-top: 18px;
}

.large-map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.media-card {
  height: 100%;
}

.media-image,
.media-video {
  width: 100%;
  border-radius: 24px;
  margin-top: 16px;
  object-fit: cover;
  background: #f4eef3;
}

.media-image,
.media-video {
  height: 360px;
}

/* Accordion sections */
.privacy-section {
  padding-top: 70px;
}

.privacy-toggle {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 28px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 28px;
  color: var(--purple);
  box-shadow: var(--shadow);
}

.privacy-icon,
#privacyIcon,
#impressumIcon {
  font-size: 34px;
  line-height: 1;
}

.privacy-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.privacy-content.open {
  max-height: 5000px;
  margin-top: 24px;
}

.privacy-title {
  margin-bottom: 24px;
}

.legal-card {
  padding: 34px;
}

.legal-card h3 {
  margin-top: 26px;
  color: var(--purple);
  font-size: 24px;
}

.legal-card h3:first-of-type {
  margin-top: 0;
}

.legal-card ul {
  padding-left: 22px;
  margin: 0 0 18px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 30px 0 50px;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.footer-inner a {
  transition: color 0.2s ease;
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .media-row {
    grid-template-columns: 1fr;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    width: min(var(--container), calc(100% - 24px));
    min-height: 78px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-logo-target,
  .header-logo-final {
    width: 50px;
    height: 50px;
  }

  .logo-fly-layer {
    display: none;
  }

  .hero-logo-origin {
    opacity: 1;
  }

  .header-logo-final {
    opacity: 1;
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    padding-top: 150px;
  }

  .services-grid,
  .team-grid,
  .form-row,
  .media-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 40px;
  }

  .hero-copy,
  .section-intro {
    font-size: 17px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .hero-logo-origin {
    width: 190px;
  }

  .privacy-toggle {
    font-size: 22px;
    padding: 18px 20px;
  }

  .large-map iframe {
    height: 320px;
  }

  .media-image,
  .media-video {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 42px;
  }

  .service-card,
  .team-content,
  .contact-card,
  .form-card,
  .full-width-map-card,
  .map-card,
  .direction-card,
  .legal-card {
    padding: 22px;
  }

  .drawer-link {
    font-size: 20px;
    padding: 20px 22px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
  }

  .hero-info {
    flex-direction: column;
  }

  .team-photo-real {
    height: 300px;
  }
}