/* =============================================
   Ländleliebe Trauungen – Minimalist Design
   ============================================= */

@import url('../fonts/fonts.css');

:root {
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --gray: #888;
  --gray-light: #bbb;
  --gray-border: #e8e8e8;
  --off-white: #f7f7f5;
  --white: #fff;

  --sage: #72745E;
  --sage-dark: #5e604d;

  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;

  --max-width: 1200px;
  --header-height: 70px;
  --ease: cubic-bezier(0.25, 0, 0.25, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--black);
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

ul { list-style: none; }

::selection {
  background: var(--black);
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p {
  margin-bottom: 1.2rem;
  color: var(--dark);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-dark {
  background: var(--sage);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

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

.btn-white:hover {
  background: var(--off-white);
  color: var(--black);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}

.header.scrolled {
  border-bottom-color: var(--gray-border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--black);
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.brand-accent {
  font-family: var(--font-serif);
  font-size: 1em;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-left: 0;
  text-transform: none;
}

.brand-subline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.28rem;
  padding-left: 0.08rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s var(--ease);
}

.nav-links a:focus-visible {
  outline-offset: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

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

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-small {
  height: 100vh;
  min-height: 600px;
}

.hero-minimal {
  height: 40vh;
  min-height: 300px;
  background: var(--off-white);
}

.hero-minimal .hero-content {
  color: var(--black);
}

.hero-minimal .hero-content h1 {
  color: var(--black);
}

/* =============================================
   INTRO
   ============================================= */
.intro {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.intro-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.intro .container {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.intro-label {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.intro h2 {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.intro p {
  font-family: var(--font-serif);
  color: var(--dark);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.intro-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-top: 1.5rem;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}

.section-dark {
  background: var(--sage);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}
.section-dark .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.section-off {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: block;
}

/* =============================================
   ABOUT PREVIEW (Homepage)
   ============================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.split-img {
  position: relative;
  overflow: visible;
}
.split-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: bottom;
}
.location-badge {
  position: absolute;
  bottom: -2rem;
  left: -3.5rem;
  background: var(--off-white);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 2;
}
.location-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
}
.location-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
}

.split-text .section-label {
  margin-bottom: 1rem;
}

.split-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
}

.split-text p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

p.intro-quote,
.split-text p.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
}

.intro-author {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--gray);
  margin-top: 0.5rem;
}

.split-text .btn {
  margin-top: 1rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-border);
}


.service-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  transition: background 0.4s var(--ease);
}

.service-card:hover {
  background: var(--off-white);
}

.service-card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-values-grid .service-card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.about-values-grid .service-card-number {
  margin-bottom: 1.25rem;
}

.about-values-grid .service-card h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  margin-bottom: 0.75rem;
}

.about-values-grid .service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-values-filler {
  background: var(--off-white);
}

/* Service Blocks (Leistungen page) */
.service-block[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--gray-border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block:nth-child(even) .service-block-img {
  order: 2;
}

.service-block-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.service-block-text .section-label {
  margin-bottom: 1rem;
}

.service-block-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.service-block-text p {
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.service-block-text ul {
  margin-top: 1.5rem;
}

.service-block-text ul li {
  padding: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--gray);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-border);
}

.service-block-text ul li:last-child {
  border-bottom: none;
}

.service-block-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-light);
}

.service-area-map {
  min-height: 450px;
  border: 1px solid var(--gray-border);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 34%),
    linear-gradient(160deg, #f4f2ed 0%, #ece8e0 100%);
  overflow: hidden;
}

.service-area-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-area-map .map-grid {
  stroke: rgba(187, 187, 187, 0.24);
  stroke-width: 1;
}

.service-area-map .map-overline {
  fill: var(--gray);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service-area-map .map-title {
  fill: var(--black);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
}

.service-area-map .map-frame {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 1;
}

.service-area-map .map-outline {
  fill: rgba(255, 255, 255, 0.52);
  stroke: rgba(187, 187, 187, 0.85);
  stroke-width: 2;
}

.service-area-map .map-detail {
  fill: none;
  stroke: rgba(187, 187, 187, 0.38);
  stroke-width: 1.4;
}

.service-area-map .map-water {
  fill: none;
  stroke: rgba(126, 152, 168, 0.78);
  stroke-width: 2.1;
  stroke-linecap: round;
}

.service-area-map .map-water-label {
  fill: rgba(105, 125, 139, 0.95);
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
}

.service-area-map .map-alb {
  fill: rgba(255, 255, 255, 0.24);
  stroke: rgba(187, 187, 187, 0.65);
  stroke-width: 1.5;
}

.service-area-map .map-contour {
  fill: none;
  stroke: rgba(160, 154, 140, 0.55);
  stroke-width: 1;
}

.service-area-map .map-halo {
  fill: rgba(255, 255, 255, 0.76);
  stroke: rgba(187, 187, 187, 0.72);
  stroke-width: 1.2;
}

.service-area-map .map-point {
  fill: var(--black);
}

.service-area-map .map-route {
  fill: none;
  stroke: rgba(95, 95, 95, 0.58);
  stroke-width: 1.6;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.service-area-map .map-route-alt {
  fill: none;
  stroke: rgba(125, 125, 125, 0.46);
  stroke-width: 1.4;
  stroke-dasharray: 3 8;
  stroke-linecap: round;
}

.service-area-map .map-route-label {
  fill: rgba(84, 84, 84, 0.9);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.service-area-map .map-leader {
  stroke: rgba(136, 136, 136, 0.55);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.service-area-map .map-chip-bg {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(187, 187, 187, 0.82);
  stroke-width: 1.1;
}

.service-area-map .map-chip-text {
  fill: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.service-area-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gray-border);
  background: var(--off-white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial {
  min-width: 100%;
  text-align: center;
  padding: 0 1rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.section-dark .testimonial-quote {
  color: var(--white);
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.section-dark .testimonial-author {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.testimonial-dot.active {
  background: var(--sage);
}

.section-dark .testimonial-dot {
  background: rgba(255, 255, 255, 0.3);
}

.section-dark .testimonial-dot.active {
  background: var(--white);
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .cta-section p {
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.about-image {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

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

.about-text .section-label {
  margin-bottom: 1rem;
}

.about-text h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-text p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 2rem;
  color: var(--black);
}

/* Values – Auto-scrolling marquee */
.values-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.values-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.values-marquee:hover .values-grid {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

a.value-card,
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.value-card {
  flex: 0 0 240px;
  min-width: 240px;
  background: var(--white);
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  border: 1px solid var(--gray-border);
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.value-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--dark);
  z-index: 2;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  transition: color 0.3s var(--ease);
}

.value-card:hover h3 {
  color: var(--black);
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 0.3s var(--ease);
}

.value-card:hover p {
  color: var(--dark);
}

/* =============================================
   PORTFOLIO
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

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

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 0.6;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.contact-form {
  padding: 0;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--gray-border);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  background: transparent;
  color: var(--black);
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--black);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  border: 1px solid var(--gray-border);
  padding: 12px 16px;
  margin-top: 0.5rem;
}

.form-group textarea:focus {
  border-color: var(--black);
}

.contact-info {
  padding-top: 0.5rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-info-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-border);
}

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

.contact-info-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  margin: 0;
  color: var(--black);
  font-weight: 300;
}

.contact-info-item a {
  color: inherit;
}

.contact-form .btn {
  min-width: 220px;
}

.contact-status {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-border);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.7;
}

.contact-status.is-success {
  border-color: rgba(114, 116, 94, 0.35);
  background: rgba(114, 116, 94, 0.08);
}

.contact-status.is-error {
  border-color: rgba(120, 84, 84, 0.3);
  background: rgba(120, 84, 84, 0.08);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--gray);
  line-height: 1.7;
}

.checkbox-label input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--sage);
}

.checkbox-label a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.form-note {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--gray-border);
  padding: 60px 0 40px;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  color: var(--dark);
  padding: 0.35rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-regions {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border);
}

.footer-regions a {
  color: inherit;
  text-decoration: none;
}

.footer-regions a:hover {
  color: var(--black);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--black);
}

/* =============================================
   LEGAL
   ============================================= */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.legal-content p {
  color: var(--gray);
  line-height: 1.8;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 968px) {
  .container,
  .container-narrow {
    padding: 0 clamp(1.25rem, 5vw, 2rem);
  }

  .logo {
    align-items: flex-start;
  }

  .brand-name {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .brand-accent {
    font-size: 1em;
    margin-left: 0;
  }

  .brand-subline {
    font-size: 0.52rem;
    letter-spacing: 0.28em;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 1.5rem 3rem;
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hamburger {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-img {
    order: -1;
  }

  .split-img img {
    height: 400px;
  }

  .location-badge {
    left: 1rem;
    bottom: 1rem;
    padding: 0.85rem 1.1rem;
    max-width: calc(100% - 2rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-values-filler {
    display: none;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-block:nth-child(even) .service-block-img {
    order: 0;
  }

  .service-block-img img {
    height: 300px;
  }

  .service-area-map {
    min-height: 360px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    position: static;
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  .value-card {
    flex: 0 0 190px;
    min-width: 190px;
  }

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

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

  .checkbox-label {
    gap: 0.65rem;
  }

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

  .footer-regions {
    line-height: 1.8;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* =============================================
   LANDINGPAGE ADDITIONS
   (Hero-Slideshow, About-Extras, Ablauf, Preise)
   ============================================= */

/* --- Hero Slideshow --- */
.hero-slideshow { position: relative; overflow: hidden; }
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroKenBurns 6s ease forwards;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  text-align: center;
}
.hero-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.hero-logo .brand-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-logo .brand-accent {
  font-size: 1em;
  margin-left: 0;
}

.hero-logo .brand-subline {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.62rem, 1.2vw, 0.8rem);
  letter-spacing: 0.42em;
  margin-top: 0.7rem;
  padding-left: 0.42em;
}
.btn-white {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-white:hover {
  background: #fff;
  color: var(--black);
}

/* --- About Blocks (Warum / Was ich anders mache) --- */
.about-lead {
  font-style: normal;
  font-family: var(--font-serif);
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about-block {
  margin-top: clamp(4rem, 8vw, 7rem);
}
.about-block h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.about-block p {
  color: var(--gray);
  line-height: 1.9;
}
.split.split-reverse .split-img { order: 2; }

/* Werte-Liste mit hervorgehobenen Schlagworten */
.about-values { margin: 0; }
.about-values dt {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-style: italic;
  color: var(--sage);
  margin-top: 1.75rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 0.5rem;
}
.about-values dt::after {
  content: none;
}
.about-values dt:first-child { margin-top: 0; }
.about-values dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
}
.about-values dd em { font-style: italic; }

/* --- Ablauf (3 Schritte mit Hintergrund-Zahlen) --- */
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.ablauf-step {
  position: relative;
  padding: 2rem 1rem 0;
  border-top: 1px solid var(--gray-border);
  overflow: hidden;
}
.ablauf-number {
  position: absolute;
  top: -0.3em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ablauf-step h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}
.ablauf-step p {
  position: relative;
  z-index: 1;
  color: var(--gray);
  line-height: 1.85;
}

/* --- Preise --- */
.preise-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.preise-header h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; }
.preise-header h2 em {
  font-weight: 300;
  color: var(--sage);
}
.preise-sub {
  max-width: 540px;
  margin: 0 auto;
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
}
.preise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}
.preis-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.preis-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}
.preis-card header {
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 1.25rem;
}
.preis-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.preis-card h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
}
.preis-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.preis-card ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.55;
}
.preis-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 1px;
  background: var(--gray);
}
.preis-card .btn { align-self: flex-start; }
.preis-featured {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.preis-featured header { border-bottom-color: rgba(255,255,255,0.2); }
.preis-featured .preis-label { color: rgba(255,255,255,0.5); }
.preis-featured h3 { color: var(--white); }
.preis-featured ul li { color: rgba(255,255,255,0.85); }
.preis-featured ul li::before { background: rgba(255,255,255,0.5); }
.preis-featured .btn-outline {
  color: #fff;
  border-color: #fff;
}
.preis-featured .btn-outline:hover {
  background: #fff;
  color: var(--sage);
}

/* --- Responsive für neue Sections --- */
@media (max-width: 900px) {
  .ablauf-grid,
  .preise-grid {
    grid-template-columns: 1fr;
  }
  .split.split-reverse .split-img { order: 0; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none !important; }
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }

  body {
    font-size: 15px;
  }

  .container,
  .container-narrow {
    padding: 0 1.1rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: var(--header-height);
  }

  .hero-content {
    padding: 0 1.1rem;
    gap: 1.35rem;
  }

  .hero-logo {
    line-height: 0.95;
  }

  .hero-logo .brand-name {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .hero-logo .brand-accent {
    font-size: 0.98em;
  }

  .hero-logo .brand-subline {
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    margin-top: 0.55rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 22px;
    text-align: center;
  }

  .split {
    gap: 2rem;
  }

  .split-img img {
    height: 320px;
  }

  .location-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .service-area-map {
    min-height: 320px;
  }

  .service-area-tags {
    gap: 0.6rem;
  }

  .service-area-tags span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 280px;
  }

  .testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .split-text p,
  .about-values dd,
  .cta-section p,
  .preise-sub,
  .intro p,
  .intro-tagline {
    font-size: 1rem;
    line-height: 1.8;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links a {
    padding: 0.45rem 0;
  }

  .footer-regions a {
    display: inline-block;
    margin-bottom: 0.35rem;
  }
}
