@import url('https://fonts.googleapis.com/css2?family=Ledger&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Light, friendly, modern – raymanty-inspired */
  --c-bg: #F7F7F7;
  --c-bg-soft: #FFFFFF;
  --c-bg-card: #FFFFFF;
  --c-bg-tinted: #F0F3F8;
  --c-line: #E5E8ED;

  --c-text: #1A2330;
  --c-text-soft: #4A5564;
  --c-muted: #7B8493;

  --c-primary: #1E3A8A;       /* Marineblau */
  --c-primary-dark: #172554;
  --c-primary-light: #2C4FB1;
  --c-primary-wash: #EEF2FB;

  --c-gold: #D4AF6A;          /* Gold sekundär */
  --c-gold-light: #E5C788;
  --c-gold-dark: #A8853E;
  --c-gold-wash: #FAF4E5;

  --c-dark: #1F2937;          /* Header/Topbar Dark */
  --c-dark-soft: #2D3748;

  --c-wa: #25D366;
  --c-wa-dark: #128C7E;

  --shadow-sm: 0 1px 2px rgba(20,30,50,.05);
  --shadow-md: 0 8px 24px rgba(20,30,50,.08);
  --shadow-lg: 0 20px 50px rgba(20,30,50,.12);

  --container: 1240px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text-soft);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-light); }

h1, h2, h3 {
  font-family: 'Ledger', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--c-text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-family: 'Open Sans', sans-serif; font-weight: 700; letter-spacing: .005em; }
.eyebrow { font-weight: 700; }
p { margin: 0 0 1rem; color: var(--c-text-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 2.25rem); }
@media (max-width: 600px) { .container { padding: 0 2rem; } }
@media (max-width: 380px) { .container { padding: 0 1.6rem; } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--c-primary); color: #fff; padding: .75rem 1rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* Topbar */
.topbar {
  background: var(--c-dark);
  color: #C9D2DE;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  display: flex; justify-content: flex-end; gap: 1.6rem;
  padding: .55rem 0;
}
.topbar a {
  color: #E2E8F0;
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 500;
}
.topbar a:hover { color: var(--c-gold-light); }
.topbar svg { color: var(--c-gold); }
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; gap: 1rem; }
  .topbar { font-size: .82rem; }
}

/* Header */
.site-header {
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0; z-index: 30;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .9rem; color: #fff; }
.brand-mark {
  width: 48px; height: 48px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-family: 'Ledger', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--c-gold);
  flex: 0 0 auto;
}
.brand-name { font-weight: 600; font-size: 1.05rem; line-height: 1.2; color: #fff; }
.brand-name span { display: block; color: #9CA3AF; font-weight: 400; font-size: .82rem; letter-spacing: .04em; }
.header-nav { display: flex; align-items: center; gap: 1.6rem; }
.link-muted { color: #E2E8F0; text-decoration: none; font-weight: 500; font-size: .95rem; letter-spacing: .02em; }
.link-muted:hover { color: var(--c-gold-light); }
@media (max-width: 900px) {
  .header-nav .link-muted { display: none; }
}
@media (max-width: 540px) {
  .brand-name span { display: none; }
  .brand-mark { width: 40px; height: 40px; font-size: 1.05rem; }
  .brand-name { font-size: .95rem; }
}
@media (max-width: 380px) {
  .header-nav .btn-sm { padding: .5rem .8rem; font-size: .82rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: .98rem;
  padding: .85rem 1.4rem;
  border-radius: var(--r-sm);
  text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  min-height: 48px;
  letter-spacing: .02em;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .55rem 1rem; min-height: 40px; font-size: .9rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.02rem; min-height: 56px; }

.btn-primary { background: var(--c-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-primary-light); color: #fff; box-shadow: var(--shadow-md); }
.btn-gold { background: var(--c-gold); color: var(--c-dark); }
.btn-gold:hover { background: var(--c-gold-light); color: var(--c-dark); }
.btn-outline { background: transparent; color: var(--c-text); border-color: var(--c-line); }
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

/* Sections */
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 4vw, 3.5rem); text-align: center; }
.section-head h2 { margin-bottom: .5rem; }
.section-head.left { text-align: left; max-width: 760px; margin-left: 0; }
.section-lead { color: var(--c-text-soft); font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .25em; font-weight: 700;
  color: var(--c-primary); font-size: .82rem; margin: 0 0 .9rem;
}
.eyebrow.gold { color: var(--c-gold-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-image {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,23,42,.65) 0%, rgba(15,23,42,.55) 50%, rgba(15,23,42,.78) 100%),
    radial-gradient(60% 60% at 50% 50%, rgba(15,23,42,.35) 0%, transparent 75%);
}
.hero-content { position: relative; max-width: 760px; text-align: center; margin: 0 auto; padding: 5rem 0; width: 100%; }

/* Tablet */
@media (max-width: 880px) {
  .hero { min-height: clamp(480px, 70vh, 620px); }
  .hero-content { padding: 3.5rem 0; }
  .hero-name { font-size: clamp(2.4rem, 7vw, 3.4rem); }
  .hero-sub { font-size: .98rem; letter-spacing: .22em; }
  .hero-lead { font-size: 1.05rem; line-height: 1.55; }
}

/* Phones */
@media (max-width: 600px) {
  .hero { min-height: auto; padding: 0; }
  .hero-content { padding: 3rem 0 3.2rem; max-width: 100%; }
  .hero-content .eyebrow {
    font-size: .72rem; letter-spacing: .18em;
    margin-bottom: .6rem;
  }
  .hero-name {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.05;
    margin-bottom: .5rem;
  }
  .hero-sub {
    font-size: .78rem;
    letter-spacing: .12em;
    margin-bottom: 1.2rem;
  }
  .hero-lead {
    font-size: .9rem;
    line-height: 1.55;
    margin: 0 auto 1.7rem;
    max-width: 100%;
  }
  .hero-content .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
  }
  .hero-content .cta-row .btn { width: 100%; min-height: 52px; padding: .9rem 1rem; font-size: .98rem; }
}

/* Very small */
@media (max-width: 380px) {
  .hero-name { font-size: 1.85rem; }
  .hero-sub { font-size: .78rem; letter-spacing: .12em; }
}
.hero-content .eyebrow { color: var(--c-gold-light); }
.hero-name {
  font-family: 'Ledger', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 .4rem;
  letter-spacing: -.005em;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.4);
}
.hero-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin: 0 0 1.5rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero-content .eyebrow { color: var(--c-gold-light); font-weight: 700; text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.hero-lead {
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  font-weight: 500;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 2.2rem;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.4);
}
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.cta-row.centered { justify-content: center; }

/* Values */
.values { background: var(--c-bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.value-card {
  position: relative;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2.4rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: 'Ledger', serif;
  font-size: 1.5rem;
  color: var(--c-gold);
}
.value-card h3 { color: var(--c-primary); margin-top: .6rem; font-size: 1.25rem; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }

/* Services */
.services { background: var(--c-bg-tinted); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.6rem);
}
@media (max-width: 1000px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card h3 {
  color: var(--c-primary);
  font-family: 'Ledger', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.service-card p { margin: 0; }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

/* Process */
.process { background: var(--c-bg); border-top: 1px solid var(--c-line); }
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
.process-steps li {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.4rem 1.4rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.process-steps li:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.process-num {
  display: block;
  font-family: 'Ledger', serif;
  font-size: 1.7rem;
  color: var(--c-gold);
  margin-bottom: .6rem;
}
.process-steps h3 { font-size: 1.05rem; margin-bottom: .4rem; font-weight: 600; color: var(--c-primary); }
.process-steps p { font-size: .92rem; margin: 0; line-height: 1.55; }
@media (max-width: 1100px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .process-steps { grid-template-columns: 1fr; } }

/* About / Über mich (kompakt, ohne Bilder) */
.about { background: var(--c-bg-tinted); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-tag {
  font-family: 'Ledger', serif;
  font-style: italic;
  color: var(--c-gold-dark);
  font-size: 1.25rem;
  margin: 1.5rem 0 0;
  letter-spacing: .02em;
}
.about-quote {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-gold);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
}
.about-mark {
  font-family: 'Ledger', serif;
  font-size: 2.5rem;
  color: var(--c-gold);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.about-quote p {
  font-family: 'Ledger', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.45;
  margin: 0 0 .8rem;
}
.about-quote footer {
  color: var(--c-muted);
  font-size: .9rem;
  letter-spacing: .05em;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { background: var(--c-bg); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: .8rem;
}
.faq-list details {
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm);
}
.faq-list details[open] { border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.faq-list summary {
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: 'Ledger', serif;
  color: var(--c-primary);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-text-soft);
  font-size: .98rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(212,175,106,.10) 0%, rgba(30,58,138,.05) 100%),
    var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.cta-band h2 { margin-bottom: .6rem; }
.cta-band p { color: var(--c-text-soft); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35), 0 4px 12px rgba(0,0,0,.2);
  z-index: 40;
  transition: transform .15s ease, background .2s ease;
}
.whatsapp-float:hover { background: var(--c-wa-dark); color: #fff; transform: translateY(-2px); }
.whatsapp-float svg { display: block; }
.whatsapp-bubble {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--c-dark);
  color: #fff;
  font-size: .88rem; font-weight: 600;
  padding: .55rem .9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.whatsapp-float:hover .whatsapp-bubble,
.whatsapp-float:focus .whatsapp-bubble { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 560px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-bubble { display: none; }
}

/* Footer */
.site-footer {
  background: var(--c-dark);
  color: #9CA3AF;
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.footer-brand { display: inline-flex; align-items: center; gap: .9rem; color: #fff; }
.footer-brand strong { color: #fff; font-weight: 600; }
.footer-brand .muted { color: #9CA3AF; font-size: .88rem; }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { color: #E2E8F0; text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: var(--c-gold); }
.copyright { margin: 0; color: #6B7280; font-size: .85rem; text-align: right; }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .copyright { text-align: left; }
}

/* Legal */
.legal-page { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--c-bg); }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 1.2rem; color: var(--c-text); }
.legal-page h2 { font-size: 1.4rem; margin-top: 2.2rem; margin-bottom: .5rem; color: var(--c-primary); font-family: 'Ledger', serif; font-weight: 400; }
.legal-page p, .legal-page li { color: var(--c-text-soft); }
.legal-page a { word-break: break-word; }
.legal-page ul { padding-left: 1.2rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
