* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

.kontakt-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vh 8vw;
  margin-top: 100px;
  gap: 5vw;
  flex-wrap: wrap;
}
.kontakt-left {
  flex: 1;
  min-width: 300px;
}
.kontakt-left h2 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .kontakt-left h2 {
    font-size: 2.3rem;
  }
}
.kontakt-left p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 500px;
}
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.kontakt-form label {
  font-size: 0.9rem;
  font-weight: bold;
}
.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #111;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-family: inherit;
  background: transparent;
  resize: none;
}
.datenschutz {
  font-size: 0.8rem;
}
.datenschutz a {
  text-decoration: underline;
  color: #111;
  font-weight: bold;
}
.submit-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.btn-line {
  width: 50px;
  height: 3px;
  background-color: #600;
  transition: width 0.3s ease;
}
.submit-cta:hover .btn-line {
  width: 60px;
}
.submit-button {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: bold;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.submit-button:hover {
  background-color: #111;
  color: #fff;
}
.kontakt-right {
  flex: 1;
  min-width: 300px;
}
.image-placeholder-kontakt {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #d3d3d3;
  background-image: url("AR.png");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}

.meltingpoint-section {
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4vw;
  padding: 8vh 8vw;
  flex-wrap: wrap;
}

.meltingpoint-left {
  flex: 1;
  min-width: 250px;
}

.meltingpoint-left h1 {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.meltingpoint-right {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.meltingpoint-right h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
}

.meltingpoint-right p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 500px;
}

.bottom-line {
  width: 180px;
  height: 1px;
  background-color: #111;
  margin-left: auto;
}


.blog-section {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5vw;
  padding: 5vh 8vw;
  flex-wrap: wrap;
}
.blog-left {
  flex: 1;
  min-width: 280px;
  margin-top: 50px;
}
.image-placeholder-blog {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #d3d3d3;
  background-image: url("Rh4.jpg");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.blog-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 50px;
}
.blog-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
}
.blog-right h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.blog-right p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.blog-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-form label {
  font-weight: bold;
}
.blog-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: white;
  font-family: inherit;
}
.blog-form input::placeholder {
  color: #ccc;
}
.blog-button {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}
.blog-button:hover {
  background-color: white;
  color: #723737;
}

.footer {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5vh 8vw;
  gap: 3rem;
  font-size: 1rem;
}
.footer-service {
  width: 1200px;
  margin-top: 50px;
}
.footer-social {
  margin-top: 50px;
  margin-right: -100px;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #dddddd;
}
.footer-service p {
  margin: 0.2rem 0;
  font-size: 0.7rem;
}
.footer-address ul {
  list-style: none;
  margin-left: 1rem;
  padding: 0;
}
.footer-social .icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-service,
  .footer-social {
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
  }

  .footer-social .icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 4vh 5vw;
    font-size: 0.9rem;
  }

  .footer-col a {
    font-size: 0.95rem;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }

  .footer-service p {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
}

/* =========================================
   SECTION: Ursprung der Form
   ========================================= */

.form-section {
  background: #ffffff;
  color: #0c0c0c;
  padding: 250px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtile Lichtführung */
.form-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(0,0,0,0.03) 50%, transparent 75%);
  animation: shimmer 20s infinite linear;
  opacity: 0.3;
  pointer-events: none;
}
/* Container */
.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
}
/* Titel */
.form-wrapper h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.16em;
  margin-bottom: 80px;
}
/* Text */
.form-content {
  max-width: 850px;
  margin: 0 auto 100px auto;
}
.form-content p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #222;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.form-content p:hover {
  color: #555;
  transform: translateY(-2px);
}
/* Galerie */
.form-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}
.form-image {
  overflow: hidden;
}
.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05);
  transition: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.form-image img:hover {
  transform: scale(1.04);
  filter: brightness(1.2) contrast(1.15);
}
/* Zitat */
.form-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 40px;
  opacity: 0.85;
}
/* Animationen */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .form-section {
    padding: 100px 20px;
  }

  .form-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }

  .form-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .form-gallery {
    gap: 25px;
    margin-bottom: 60px;
  }

  .form-quote {
    font-size: 1.1rem;
  }
}

/* =========================================
   SECTION: Mythologischer Kontext
   ========================================= */

.myth-section {
  background: radial-gradient(circle at 40% 30%, #0a0a0a 0%, #000000 90%);
  color: #ffffff;
  padding: 180px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Schimmer / Sternenstaub */
.myth-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.05), transparent 70%),
              linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.04) 50%, transparent 75%);
  opacity: 0.5;
  animation: shimmer 20s infinite linear;
  pointer-events: none;
}
/* Container */
.myth-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
}
/* Titel */
.myth-wrapper h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  margin-bottom: 80px;
  color: #ffffff;
}
/* Text */
.myth-text {
  max-width: 850px;
  margin: 0 auto 100px auto;
}
.myth-text p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #dcdcdc;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  transition: color 1s ease, transform 1s ease;
}
.myth-text p:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
/* Galerie */
.myth-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}
.myth-image {
  overflow: hidden;
  position: relative;
}
.myth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1) saturate(0.9);
  transition: all 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.myth-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.2) saturate(1);
}
/* Zitat */
.myth-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: #eaeaea;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 40px;
  opacity: 0.9;
}
/* Animationen */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .myth-section {
    padding: 100px 20px;
  }

  .myth-wrapper h2 {
    font-size: 1.7rem;
    margin-bottom: 60px;
  }

  .myth-text p {
    font-size: 1rem;
  }

  .myth-gallery {
    gap: 25px;
    margin-bottom: 60px;
  }

  .myth-quote {
    font-size: 1.2rem;
  }
}

/* =========================================
   SECTION: Das Klientel (kompakte Version)
   ========================================= */

.client-section {
  background: linear-gradient(180deg, #fdfdfd 0%, #f7f7f7 100%);
  color: #0a0a0a;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}
/* Lichtschimmer */
.client-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(0,0,0,0.03) 50%, transparent 75%);
  animation: shimmer 18s infinite linear;
  opacity: 0.2;
  pointer-events: none;
}
/* Wrapper */
.client-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
}
/* Titel */
.client-wrapper h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 60px;
}
/* Intro */
.client-intro {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 60px;
}
/* Hauptbild – deutlich kleiner */
.client-visual {
  position: relative;
  width: 100%;
  height: 580px; /* reduziert von 600px */
  overflow: hidden;
  margin-bottom: 80px;
}
.client-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.client-visual img:hover {
  transform: scale(1.04);
}
.client-overlay-quote {
  position: absolute;
  bottom: 30px;
  left: 40px;
  max-width: 420px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  padding: 20px 30px;
  border-left: 2px solid #000;
}
.client-overlay-quote p {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
/* Content-Grid */
.client-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
.client-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}
.client-images {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.client-images img {
  width: 48%;
  height: 260px; /* kleinere Bilder */
  object-fit: cover;
  filter: brightness(1.05) contrast(1.1);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.client-images img:hover {
  transform: scale(1.03);
  filter: brightness(1.2) contrast(1.2);
}
/* Schlusszitat */
.client-quote {
  text-align: center;
  margin-top: 40px;
}
.client-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: #111;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
/* Animationen */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
/* Responsive */
@media (max-width: 992px) {
  .client-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .client-images {
    justify-content: center;
  }

  .client-images img {
    width: 45%;
    height: 220px;
  }
}
@media (max-width: 768px) {
  .client-section {
    padding: 90px 20px;
  }

  .client-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .client-intro p {
    font-size: 1rem;
  }

  .client-visual {
    height: 280px;
  }

  .client-overlay-quote {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 15px 20px;
  }

  .client-overlay-quote p {
    font-size: 0.95rem;
  }

  .client-images img {
    height: 200px;
  }

  .client-quote blockquote {
    font-size: 1.1rem;
  }
}

/* =========================================
   SECTION 4: Philosophie des Designs
   ========================================= */

.philosophy-section {
  background: #ffffff;
  color: #0a0a0a;
  padding: 160px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
/* feiner Lichtschimmer */
.philosophy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(0,0,0,0.03) 50%, transparent 75%);
  animation: shimmer 18s infinite linear;
  opacity: 0.25;
  pointer-events: none;
}
/* Wrapper */
.philosophy-wrapper {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
}
/* Titel */
.philosophy-wrapper h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 70px;
}
/* Inhalt */
.philosophy-content p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #222;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
  transition: color 1.2s ease;
}
.philosophy-content p:hover {
  color: #555;
}
.philosophy-content em {
  font-style: italic;
  color: #000;
}
.philosophy-content strong {
  font-weight: 500;
  color: #111;
}

/* =========================================
   SECTION 5: Emotionaler Resonanzraum
   ========================================= */

.resonance-section {
  background: radial-gradient(circle at 50% 40%, #0b0b0b 0%, #000 100%);
  color: #ffffff;
  padding: 160px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* subtiler Schimmer */
.resonance-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.05), transparent 60%),
              linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.04) 50%, transparent 75%);
  animation: shimmer 22s infinite linear;
  opacity: 0.4;
  pointer-events: none;
}
/* Wrapper */
.resonance-wrapper {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
}
/* Titel */
.resonance-wrapper h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 70px;
  color: #ffffff;
}
/* Inhalt */
.resonance-content p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #dcdcdc;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  transition: color 1s ease;
}
.resonance-content p:hover {
  color: #fff;
}
.resonance-content em {
  font-style: italic;
  color: #f5f5f5;
}
.resonance-content strong {
  font-weight: 500;
  color: #ffffff;
}
/* Zitat */
.resonance-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: #ffffff;
  opacity: 0.85;
  margin-top: 60px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
/* Animationen */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
/* Responsive Anpassung */
@media (max-width: 768px) {
  .philosophy-section,
  .resonance-section {
    padding: 100px 20px;
  }

  .philosophy-wrapper h2,
  .resonance-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }

  .philosophy-content p,
  .resonance-content p {
    font-size: 1rem;
  }

  .resonance-content blockquote {
    font-size: 1.2rem;
  }
}

/* =========================================
   SECTION: Abschluss / Brand Essence
   ========================================= */

.essence-section {
  background: #000000;
  color: #ffffff;
  padding: 180px 20px;
  position: relative;
  overflow: hidden;
}

/* Container */
.essence-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
}

/* Galerie */
.essence-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 100px;
}

.essence-gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 1.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.essence-gallery img:hover {
  transform: scale(1.03);
  filter: brightness(1.25) contrast(1.15);
}

/* Text */
.essence-content h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  margin-bottom: 70px;
  color: #ffffff;
}

.essence-content p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #dcdcdc;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  transition: color 1.2s ease;
}

.essence-content p:hover {
  color: #ffffff;
}

.essence-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
  opacity: 0.85;
  margin-top: 60px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
/* Responsive */
@media (max-width: 992px) {
  .essence-gallery {
    flex-direction: column;
    gap: 25px;
  }

  .essence-gallery img {
    width: 90%;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .essence-section {
    padding: 120px 20px;
  }

  .essence-content h2 {
    font-size: 1.7rem;
    margin-bottom: 50px;
  }

  .essence-content p {
    font-size: 1rem;
  }

  .essence-content blockquote {
    font-size: 1.3rem;
  }
}
