@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #131313;
  --navy-mid:    #1c1c1c;
  --gold:        #c8a44a;
  --gold-light:  #b8943a;
  --gold-dark:   #9a7a28;
  --bg:          #ffffff;
  --bg-alt:      #f8f5ef;
  --bg-card:     #ffffff;
  --text:        #1a1a1a;
  --text-mid:    #4a4540;
  --text-muted:  #888580;
  --border:      #e5e0d8;
  --border-gold: rgba(200, 164, 74, 0.35);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow:      0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --t:           0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  color: #1a1a1a;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
p  { color: var(--text-mid); }

em { font-style: italic; color: var(--gold-dark); }

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.badge {
  display: inline-block;
  background: rgba(200, 164, 74, 0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-gold);
  margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.93rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--t); white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,164,74,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: #1a1a1a;
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}
.btn-navy {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-navy:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 13px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.93rem;
  transition: all var(--t);
  margin-top: 20px;
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all var(--t);
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1), 0 1px 0 rgba(200,164,74,0.15);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  flex-shrink: 0;
}
.header.scrolled .logo { color: #1a1a1a; }
.logo img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  mix-blend-mode: lighten;
}
.header.scrolled .logo img {
  mix-blend-mode: normal;
}
.logo-text .brand { font-size: 1.15rem; line-height: 1.1; }
.logo-text .tagline { font-size: 0.68rem; font-family: 'Inter', sans-serif; font-weight: 400; opacity: 0.75; letter-spacing: 0.04em; }

.nav {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
}
.nav a {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(0,0,0,0.7);
  transition: color var(--t); position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--t);
}
.nav a:hover { color: #1a1a1a; }
.nav a:hover::after { transform: scaleX(1); }
.header.scrolled .nav a { color: rgba(0,0,0,0.65); }
.header.scrolled .nav a:hover { color: var(--gold-dark); }

.header-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600;
  color: rgba(0,0,0,0.75);
  transition: color var(--t);
}
.header-phone svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.header-phone:hover { color: var(--gold-dark); }
.header.scrolled .header-phone { color: rgba(0,0,0,0.65); }
.header.scrolled .header-phone:hover { color: var(--gold-dark); }
.header-cta { padding: 10px 20px; font-size: 0.85rem; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #1a1a1a; border-radius: 2px;
  transition: all var(--t);
}
.header.scrolled .menu-toggle span { background: #1a1a1a; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--navy); z-index: 1100;
  display: flex; flex-direction: column;
  padding: 24px;
  transition: right var(--t);
  box-shadow: -4px 0 30px rgba(0,0,0,0.2);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  align-self: flex-end; background: none; border: none;
  color: #fff; font-size: 1.3rem; cursor: pointer;
  opacity: 0.7; padding: 4px; margin-bottom: 24px;
}
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem; font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav-contact {
  margin-top: auto; padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav-contact li a {
  font-size: 0.9rem; border: none;
}
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1050; display: none;
}
.mobile-nav-overlay.show { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #faf9f6 0%, #f5f0e8 40%, #f0ebe0 70%, #faf8f4 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,164,74,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,164,74,0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(200,164,74,0.04) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,164,74,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,164,74,0.12);
  border: 1px solid rgba(200,164,74,0.3);
  color: var(--gold-light);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: #1a1a1a;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold-dark); font-style: italic; }

.hero-sub {
  color: rgba(0,0,0,0.62);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.hero-stat-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; padding-right: 24px; margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-icon { color: var(--gold-dark); flex-shrink: 0; }
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem; color: var(--gold-dark);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.78rem; color: rgba(0,0,0,0.5);
  margin-top: 4px; font-weight: 500;
}

/* Hero right – visual card */
.hero-right {
  display: flex; justify-content: center;
}
.hero-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  width: 100%; max-width: 380px;
}
.hero-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: #1a1a1a; margin-bottom: 20px;
}
.hero-card-items {
  display: flex; flex-direction: column; gap: 14px;
}
.hero-card-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #f8f5ef;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.hero-card-item-icon {
  width: 36px; height: 36px;
  background: rgba(200,164,74,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  color: var(--gold-dark);
}
.hero-card-item-text {
  font-size: 0.88rem; color: rgba(0,0,0,0.75);
  font-weight: 500;
}
.hero-card-cta {
  margin-top: 24px;
  width: 100%; text-align: center;
  padding: 13px;
}

/* ===== SERVICES TEASER ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--t);
  cursor: default;
}
.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(200,164,74,0.1);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,164,74,0.15), rgba(200,164,74,0.05));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  border: 1px solid var(--border-gold);
}
.service-card h3 {
  font-size: 1.05rem; margin-bottom: 8px; color: #1a1a1a;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); }

.services-cta {
  text-align: center; margin-top: 40px;
}

/* ===== SERVICES TEASER (Homepage) ===== */
.services-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #f8f5ef 0%, #f2ece0 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 56px 52px;
}
.services-teaser-left .badge { margin-bottom: 16px; }
.services-teaser-left h2 { margin-bottom: 16px; line-height: 1.1; }
.services-teaser-left p { margin-bottom: 32px; font-size: 1rem; }
.services-teaser-cta { align-self: flex-start; }

.services-teaser-right {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-content: flex-start;
}
.services-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid);
  transition: all 0.25s ease;
  cursor: default;
}
.services-pill:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
  background: rgba(200,164,74,0.06);
  transform: translateY(-2px);
}
.services-pill-more {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--gold-light);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.services-pill-more:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .services-teaser {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }
}

/* ===== WHY US ===== */
.why-section {
  background: linear-gradient(135deg, #faf7f1 0%, #f6f1e8 52%, #f1ebdf 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 70%, rgba(200,164,74,0.14) 0%, transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(200,164,74,0.08) 0%, transparent 26%);
  pointer-events: none;
}
.why-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}
.why-media {
  position: relative;
  min-height: 460px;
}
.why-media-main,
.why-media-float {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.why-media-main {
  max-width: 520px;
  border: 1px solid rgba(200,164,74,0.18);
}
.why-media-main img,
.why-media-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-media-float {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 240px;
  border: 1px solid rgba(200,164,74,0.3);
}
.why-content {
  position: relative;
  z-index: 1;
}
.why-kicker {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-content h2 {
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.03;
}
.why-intro {
  color: rgba(0,0,0,0.66);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 28px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #111;
  box-shadow: 0 10px 24px rgba(200,164,74,0.2);
}
.why-feature-body h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.why-feature-body p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.62);
  margin-bottom: 0;
}
.why-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
  position: relative;
  z-index: 1;
}
.why-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(200,164,74,0.38);
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #1a1a1a;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transition: all var(--t);
  backdrop-filter: blur(6px);
}
.why-cta-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.why-cta-arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-gold), var(--gold), var(--border-gold), transparent);
  z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
}
.process-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: #f5f0e8;
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.process-step:hover .process-step-num {
  background: var(--gold);
  border-color: var(--gold);
}
.process-step-num span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: var(--gold-dark);
  transition: color var(--t);
}
.process-step:hover .process-step-num span { color: #fff; }
.process-step h3 { font-size: 0.98rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 600; color: #1a1a1a; }
.process-step p { font-size: 0.84rem; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-link {
  display: block;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f0ebe2 0%, #e8e2d4 100%);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder {
  text-align: center; padding: 40px;
}
.about-img-placeholder .big-icon { font-size: 5rem; display: block; margin-bottom: 12px; }
.about-img-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.about-owner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}
.about-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.about-accent-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem; color: var(--navy); line-height: 1;
}
.about-accent-lbl {
  font-size: 0.8rem; color: var(--navy); font-weight: 600;
  margin-top: 4px; opacity: 0.75;
}

.about-text h2 { margin-bottom: 14px; }
.about-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 20px 0;
}
.about-text p { margin-bottom: 16px; }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.about-tag {
  background: #f2ece0;
  color: var(--gold-dark);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--border-gold);
}
.about-link:hover .about-img-box,
.about-link:hover .about-text {
  transform: translateY(-2px);
}
.about-img-box,
.about-text {
  transition: transform var(--t);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
#kontakt {
  padding-bottom: 120px;
}
.contact-info-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 24px;
}
.contact-items {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t);
}
.contact-item:hover { border-color: var(--border-gold); }
.contact-item-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(200,164,74,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-item-content { display: flex; flex-direction: column; }
.contact-item-content label {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
}
.contact-item-content span,
.contact-item-content a {
  font-size: 0.92rem; color: var(--text-mid); font-weight: 500;
}
.contact-item-content a:hover { color: var(--gold-dark); }

/* Contact form */
.contact-form-card {
  background: #f8f5ef;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-card h3 {
  color: #1a1a1a; font-size: 1.4rem; margin-bottom: 6px;
}
.contact-form-card > p {
  color: rgba(0,0,0,0.55); font-size: 0.88rem; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: rgba(0,0,0,0.65);
  letter-spacing: 0.04em;
}
.field-optional { font-weight: 400; opacity: 0.6; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #1a1a1a;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--t);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #ffffff;
}
.form-group select option { background: #ffffff; color: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: 0.78rem; color: #f87171; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80; font-size: 0.9rem; margin-bottom: 16px;
  display: none;
}
.form-success.show { display: block; }
.form-error-msg {
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(248,113,113,0.15);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f87171; font-size: 0.9rem; margin-bottom: 16px;
  display: none;
}
.form-error-msg.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: linear-gradient(180deg, #f6f1e7 0%, #efe5d4 100%);
  padding: 58px 0 24px;
  color: rgba(26,26,26,0.85);
  overflow: visible;
}
.footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -56px;
  height: 58px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f6f1e7' d='M0,86C90,34,180,12,270,34C360,56,450,122,540,112C630,102,720,26,810,22C900,18,990,84,1080,94C1170,104,1260,52,1350,32C1395,22,1425,24,1440,44L1440,120L0,120Z'/%3E%3C/svg%3E") no-repeat center top / 100% 100%;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 14%, rgba(200,164,74,0.18) 0%, transparent 26%);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(200,164,74,0.45);
  background: #fff;
  padding: 3px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  mix-blend-mode: normal;
}
.footer-logo-text .brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: #1a1a1a;
}
.footer-logo-text .tagline {
  font-size: 0.7rem; color: rgba(0,0,0,0.58); margin-top: 2px; letter-spacing: 0.04em;
}
.footer-about p { font-size: 0.88rem; line-height: 1.6; color: rgba(0,0,0,0.68); }
.footer-col h4 {
  color: #1a1a1a; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(0,0,0,0.72);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--gold-dark); }
.footer-col address {
  font-style: normal; font-size: 0.88rem; line-height: 1.9;
  display: flex; flex-direction: column; gap: 4px;
  color: rgba(0,0,0,0.72);
}
.footer-col address a { color: rgba(0,0,0,0.72); transition: color var(--t); }
.footer-col address a:hover { color: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid rgba(154,122,40,0.18);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(0,0,0,0.7); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(0,0,0,0.62); transition: color var(--t); }
.footer-legal a:hover { color: var(--gold-dark); }
.footer-gold { color: var(--gold-dark); font-weight: 700; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 520px; z-index: 9999;
  background: #181818;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.88rem; margin-bottom: 16px; }
.cookie-banner a { color: var(--gold-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 9px 20px; font-size: 0.84rem; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px);
  transition: all var(--t); pointer-events: none;
}
.scroll-top.show { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== LEISTUNGEN PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
  padding: 140px 0 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 28px; }

.leistungen-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.leistung-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--t);
}
.leistung-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(200,164,74,0.1);
  transform: translateY(-3px);
}
.leistung-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #f2ece0, #e8e2d4);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.leistung-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.leistung-card p { font-size: 0.88rem; margin-bottom: 16px; }
.leistung-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.leistung-tag {
  background: #f0ebe2;
  color: #555550;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500;
  font-size: 0.75rem; font-weight: 500;
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ===== IMPRESSUM / DATENSCHUTZ ===== */
.legal-page { padding: 140px 0 80px; }
.legal-content {
  max-width: 760px; margin: 0 auto;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .legal-updated {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 40px;
}
.legal-content h2 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1.1rem; margin: 32px 0 8px; color: var(--gold-light);
}
.legal-content p, .legal-content li { font-size: 0.95rem; margin-bottom: 8px; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-showcase, .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .why-media {
    min-height: auto;
    padding-bottom: 120px;
  }
  .why-media-main {
    max-width: 100%;
  }
  .why-media-float {
    width: 220px;
  }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-showcase { gap: 28px; }
  .why-media {
    padding-bottom: 90px;
  }
  .why-media-main,
  .why-media-float {
    border-radius: 20px;
  }
  .why-media-float {
    width: 170px;
    bottom: 0;
  }
  .why-content h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-stat-item { flex: 1 1 40%; }
  .hero-stat-item:last-child { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .contact-form-card { padding: 24px 20px; }
}
