/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border, #e2e0dc);
}

.navbar-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.navbar-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, #2d5f8a);
  text-decoration: none;
  padding: 8px 20px;
  border: 1.5px solid var(--accent, #2d5f8a);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.navbar-cta:hover {
  background: var(--accent, #2d5f8a);
  color: #fff;
}


:root {
  --ink: #1a1a2e;
  --paper: #fafaf8;
  --accent: #2d5f8a;
  --accent-light: #e8f0f7;
  --accent-dark: #1b3d5c;
  --warm: #c4956a;
  --warm-light: #f5ede5;
  --text: #3a3a4a;
  --text-light: #6b6b7b;
  --border: #e2e0dc;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  background: linear-gradient(168deg, var(--paper) 0%, var(--accent-light) 50%, var(--paper) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border));
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-brand-logo {
  height: 130px;
  width: auto;
  display: block;
  filter: brightness(1.15) saturate(0.85) hue-rotate(10deg);
}

.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.hero-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,95,138,0.2);
}

/* ─── PROBLEM SECTION ─── */
.problem {
  padding: 100px 24px;
  background: var(--paper);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 16px;
}

.problem h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.3;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-list li:last-child { border-bottom: none; }

.problem-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--warm-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.problem-text strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.problem-text span {
  color: var(--text-light);
  font-size: 15px;
}

/* ─── WHAT WE DO ─── */
.services {
  padding: 100px 24px;
  background: var(--ink);
  color: #fff;
}

.services .section-label {
  color: var(--warm);
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services-intro {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
}

.service-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--warm);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── HOW WE WORK ─── */
.process {
  padding: 100px 24px;
  background: var(--paper);
}

.process h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 56px;
  line-height: 1.3;
}

.step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .step { flex-direction: column; gap: 12px; }
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── RESULTS / PROOF ─── */
.results {
  padding: 80px 24px;
  background: var(--accent-light);
}

.results h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 48px;
  line-height: 1.3;
}

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

@media (max-width: 640px) {
  .stat-grid { grid-template-columns: 1fr; gap: 24px; }
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── WHY US ─── */
.why {
  padding: 100px 24px;
  background: var(--paper);
}

.why h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 48px;
  line-height: 1.3;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-item h3::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--warm);
  flex-shrink: 0;
}

.why-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 30px;
}

/* ─── WORKSHOP ─── */
.workshop {
  padding: 80px 24px;
  background: var(--warm-light);
  text-align: center;
}

.workshop h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
}

.workshop-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.workshop-desc strong {
  color: var(--ink);
}

.workshop-price {
  font-size: 15px;
  color: var(--text-light);
}

.workshop-price strong {
  color: var(--ink);
}

/* ─── CTA ─── */
.cta-section {
  padding: 100px 24px;
  background: var(--ink);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

/* ─── FOOTER ─── */
footer {
  padding: 48px 24px;
  background: #141425;
  text-align: center;
}

.footer-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-location {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── DIVIDER ─── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--warm);
  margin: 0 0 24px 0;
}

.divider-center {
  width: 40px;
  height: 2px;
  background: var(--warm);
  margin: 0 auto 24px;
}

/* ─── SINGLE PAGE (Impressum / Datenschutz) ─── */
.page-single {
  padding: 80px 24px 120px;
  background: var(--paper);
}

.page-single h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-single h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 12px;
}

.page-single p,
.page-single li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-single ul,
.page-single ol {
  padding-left: 20px;
}

.page-single a {
  color: var(--accent);
  text-decoration: none;
}

.page-single a:hover {
  text-decoration: underline;
}

.page-back {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.page-back:hover {
  text-decoration: underline;
}
