:root {
  --light: #f7f7f7;
  --text: #111;
  --accent: #c5a880;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }


h1 {
  font-weight: 300;
  letter-spacing: -0.2px;
  font-size: 3rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}


h2 {
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* =========================
   NAV
========================= */

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 26px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  line-height: 20px;

  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.brand { display: inline-flex; align-items: flex-start; text-decoration: none; }

.brand-logo {
  display: block;
  height: 130px;
  width: auto;
}

/* Links */

.nav-links {
  display: flex;
  gap: 60px;
  margin-top: 4px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
  color: white;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: white;
  transition: 0.35s ease;
}

.nav-links a:hover::after { width: 100%; }

/* Burger */

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

.burger span {
  width: 25px;
  height: 2px;
  background: white;
}

/* SCROLLED NAV */

.nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav.scrolled .nav-links a { color: #111; }
.nav.scrolled .nav-links a::after { background: #111; }
.nav.scrolled .burger span { background: #111; }

/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url('../assets/hero.jpg') center 70% / cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content p {
  font-weight: 100;
  letter-spacing: 5px;
  margin-top: 22px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 100;

}

/* nur mobil sichtbar */
@media (max-width: 1000px) {
  .hero-content p { font-size: 0.65rem; letter-spacing: 3px }
  .hero-content h1 { font-size: 2.1rem; 
} 
} 


/* =========================
   SECTIONS
========================= */

.section {
  padding: 100px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section.visible { opacity: 1; transform: translateY(0); }

.section.light { background: var(--light); }

.container { max-width: 1200px; margin: auto; }
.container.narrow { max-width: 700px; text-align: center; }

/* =========================
   ABOUT GRID
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 20px;
}

/* =========================
   CARDS
========================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.card {
  background: white;
  padding: 80px 60px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.05);
}

/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery img:hover { transform: scale(1.03); }

/* =========================
   STORIES
========================= */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px;
}

.stories-grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.35s ease;
}

.stories-grid img:hover {
  transform: scale(1.02);
}

/* =========================
   FAQ
========================= */

.faq-item {
  margin-bottom: 50px;
}

.faq-item h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.faq-item p {
  font-weight: 300;
  line-height: 1.8;
}
/* ============================= */
/* CONTACT FORM – EDITORIAL */
/* ============================= */

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #e4deda;
}

.form-group {
  margin-bottom: 35px;
}

/* Inputs & Textareas */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 14px 0;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: transparent;
  transition: border-color 0.3s ease;
}

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

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.5px;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom: 1px solid #000;
}

/* Privacy Checkbox */
.form-group.privacy {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 10px;
}

.form-group.privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
}

.form-group.privacy input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

/* Button */
.contact-form button {
  margin-top: 30px;
  padding: 14px 40px;
  border: 1px solid #000;
  background: black;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #c5a880;
}

.contact-form button:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 40px 20px;
  }

  .form-group {
    margin-bottom: 28px;
  }
}

/* =========================
   REFERENZEN
========================= */

.testimonial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 100px 20px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-logo {
  width: 140px;
  margin-bottom: 30px;
}

.footer a {
  text-decoration: none;
  color: inherit;
  margin: 0 10px;
}

.design-credit {
  margin-top: 20px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .nav { padding: 22px 28px; }
  .brand-logo { height: 78px; }

  .grid-3,
  .about-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .gallery { grid-template-columns: repeat(2,1fr); }

  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    padding: 150px 40px;
    gap: 40px;
    transition: 0.35s ease;
  }

  .nav-links.active { right: 0; }

  .nav.scrolled .nav-links a { color: white; }
  .nav.scrolled .nav-links a::after { background: white; }
}

/* =========================
   SERVICES & ARTIKEL IMAGES
========================= */

.services-grid img,
.artikel-grid img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.services-grid img:hover,
.artikel-grid img:hover {
  transform: scale(1.02);
}

/* =========================
   GALLERY WALL
========================= */
/* ================= GALLERY ================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Variationen */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}


/* Responsive */

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}


/* =========================
   MOBILE CLOSE BUTTON
========================= */

.menu-close {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;

  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

/* nur mobil sichtbar */
@media (max-width: 1000px) {
  .menu-close {
    display: block;
  }
}

/* =========================
   ABOUT SECTION (EDITORIAL)
========================= */

.about {
  padding: 200px 0;
}

.about-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  padding: 0 40px;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  transform: scale(1.08); /* leichter Zoom */
  transition: transform 1.2s ease;
}

.about-image img:hover {
  transform: scale(1.12);
}

.about-content {
  max-width: 520px;
}

.about-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #888;
}

.about-content h2 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: 40px;
  font-weight: 300;
  text-align: start;
}

.about-content p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #333;

}

/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about {
    padding: 140px 0;
  }

  .about-content {
    max-width: 100%;
    text-align: left;
  }
}

/* ============================= */
/* SERVICES EDITORIAL STYLE */
/* ============================= */

.services-section {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #f9f6f2;
}

.services-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 120px auto;
}

.services-intro h2 {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #555;

}
  


/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
}

/* CARD */
.service-card {
  border-left: 1px solid rgba(0,0,0,0.08);
  padding-left: 40px;
}

.service-image {
  overflow: hidden;
  margin-bottom: 50px;
}

.service-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

.plus {
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
}

.service-details {
  max-height: 0;

  overflow: hidden;
  transition: height 0.5s ease;
}

.service-card.active .service-details {
  
  
  margin-top: 20px;
}

.service-details p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.plus {
  transition: transform 0.4s ease;
  font-size: 1.2rem;
}

.service-card.active .plus {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 100px;
    padding: 0 30px;
  }

  .service-card {
    border-left: none;
    padding-left: 0;
  }

  .service-image img {
    height: 420px;
  }
}
/* ===============================
   ARTIKEL – EDITORIAL STYLE
=================================*/

.artikel-section {
  background: #f8f6f3;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
}

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #e5e5e5;
}

.artikel-item {
  text-align: center;
  padding: 80px 50px 120px;
  border-right: 1px solid #e5e5e5;
  transition: transform 0.4s ease;
}

.artikel-item:last-child {
  border-right: none;
}

.artikel-item:hover {
  transform: translateY(-6px);
}

.artikel-image {
  margin-bottom: 40px;
}

.artikel-image img {
  width: 100%;
  max-width: 320px;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artikel-item:hover img {
  transform: scale(1.03);
}

.artikel-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 1000px) {

  .artikel-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .artikel-item {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 60px 20px;
  }

  .artikel-item:last-child {
    border-bottom: none;
  }

}

.section-intro {
  max-width: 680px;
  margin: 0 auto 120px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
}

.artikel-intro {
  max-width: 720px;
  margin: 10px auto 10px; /* deutlich weniger Abstand */
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #555;
}

/* LEISTUNGEN & ARTIKEL GRID (shared style) */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #eee;
}

.leistung-item {
  text-align: center;
  padding: 90px 50px 120px;
  border-right: 1px solid #eee;
  transition: 0.4s ease;
}

.leistung-item:last-child {
  border-right: none;
}

.leistung-item img {
  width: 100%;
  max-width: 420px;
  height: 560px;
  object-fit: cover;
  margin-bottom: 60px;
}

.leistung-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.leistung-item span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

.leistung-item:hover {
  background: #fafafa;
}

/* Intro Text */
.section-intro {
  max-width: 700px;
  margin: 30px auto 120px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #555;
}

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

  .leistung-item {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .leistung-item:last-child {
    border-bottom: none;
  }

  .leistung-item img {
    height: 420px;
  }
}

/* ================= FAQ ================= */

.faq-section {
  background: #f7f5f2;
}

.faq-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 100px;
}

.faq-list {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  padding-bottom: 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* ================= TESTIMONIALS ================= */

.testimonials {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}

.testimonial .author {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
}

.consent {
  margin-top: 15px;
}

.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
}

.consent-label input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
}

.consent-label a {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================
   WEITERLESEN IN TESTIMONIALS
========================= */
.truncate {
  position: relative;
  max-height: 10em; /* etwa 6 Zeilen sichtbar */
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.truncate.expanded {
  max-height: 1500px; /* Platz für vollständigen Text */
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #000;
}


/* === Kontakt Formular Feinschliff === */


/* Kleine Erfolgsmeldung nach dem Absenden */
.form-success {
  grid-column: 1 / -1;
  background: #f2efeb;
  border-left: 4px solid var(--accent);
  padding: 12px 18px;
  color: #333;
  font-size: 0.9rem;
}

