/* =========================================================
   Silvia spricht – Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&family=Caveat:wght@500;600;700&display=swap');

:root{
  /* Color tokens */
  --ink:        #2B2420;
  --ink-soft:   #5A4F45;
  --paper:      #FBF6EE;
  --paper-warm: #F4EDE0;
  --terracotta: #C4622D;
  --terracotta-deep: #A04D20;
  --sage:       #5C6B4F;
  --sage-soft:  #DDE3D3;
  --taupe:      #8B7355;
  --line:       #E4DBC9;
  --white:      #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Scale */
  --step-xs: clamp(0.78rem, 0.75rem + 0.15vw, 0.85rem);
  --step-sm: clamp(0.92rem, 0.89rem + 0.15vw, 1rem);
  --step-base: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  --step-md: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-lg: clamp(1.7rem, 1.45rem + 1.2vw, 2.3rem);
  --step-xl: clamp(2.3rem, 1.85rem + 2.2vw, 3.6rem);
  --step-2xl: clamp(2.9rem, 2.1rem + 3.8vw, 5rem);

  --radius: 6px;
  --radius-lg: 14px;
  --shadow-soft: 0 10px 30px -12px rgba(43,36,32,0.18);
  --shadow-card: 0 4px 16px -4px rgba(43,36,32,0.10);

  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1{ font-size: var(--step-2xl); font-weight: 500; }
h2{ font-size: var(--step-xl); }
h3{ font-size: var(--step-md); font-weight: 600; }
p{ margin: 0 0 1.1em 0; }
.lede{ font-size: var(--step-md); color: var(--ink-soft); font-weight: 400; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: clamp(56px, 8vw, 110px) 0; }
.section--tight{ padding: clamp(40px, 5vw, 64px) 0; }
.section--sage{ background: var(--sage-soft); }
.section--ink{ background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3{ color: var(--paper); }
.section--warm{ background: var(--paper-warm); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--terracotta);
  display:inline-block;
}

/* Signature underline – wie eine Sprechpause / Betonung */
.accent-underline{ position:relative; display:inline-block; }
.accent-underline svg{
  position:absolute; left:0; bottom:-0.12em; width:100%; height:0.3em;
  overflow:visible;
}

.hand{ font-family: var(--font-hand); color: var(--terracotta-deep); font-weight:600; }

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-sm);
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:focus-visible{ outline: 3px solid var(--terracotta-deep); outline-offset: 3px; }
.btn-primary{ background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--terracotta-deep); transform: translateY(-2px); }
.btn-ghost{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--paper); }
.btn-on-ink{ background: var(--paper); color: var(--ink); }
.btn-on-ink:hover{ background: var(--terracotta); color: var(--white); }
.btn-sm{ padding: 10px 18px; font-size: var(--step-xs); }
.btn-wa{ background:#25D366; color:#0b3d1f; }
.btn-wa:hover{ background:#1ebd5a; }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

.btn-row{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* ============ Header ============ */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(251,246,238,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; gap:0;
  padding: 14px 24px;
  max-width: var(--maxw); margin:0 auto;
}
.logo{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display:flex; align-items:center; gap:10px;
  flex-shrink: 0;
  margin-right: 40px;
}
.logo .dot{ color: var(--terracotta); }
.main-nav{ display:flex; align-items:center; flex:1; }
.main-nav ul{ display:flex; gap:22px; list-style:none; margin:0; padding:0; }
.header-cta{ display:flex; gap:10px; align-items:center; flex-shrink:0; margin-left: 40px; }
.main-nav a{
  font-weight:500; font-size: var(--step-sm); color: var(--ink-soft);
  position:relative; padding: 4px 0;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{ color: var(--ink); }
.main-nav a[aria-current="page"]::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--terracotta);
}
.header-cta{ display:flex; gap:10px; align-items:center; }
.nav-toggle{ display:none; }

@media (max-width: 940px){
  .main-nav ul{ display:none; }
  .header-cta .btn-ghost{ display:none; }
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius: var(--radius);
    border:1.5px solid var(--ink); background:none; cursor:pointer;
  }
  .main-nav.open ul{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:64px; left:0; right:0;
    background: var(--paper); border-bottom:1px solid var(--line);
    padding: 8px 24px 18px;
  }
  .main-nav.open ul li{ border-top:1px solid var(--line); }
  .main-nav.open ul a{ display:block; padding: 14px 4px; }
}

/* ============ Sticky bottom CTA (mobile) ============ */
.sticky-cta{
  position: fixed; bottom:0; left:0; right:0; z-index: 200;
  display:none;
  background: var(--ink);
  padding: 10px 14px;
  gap:10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
}
.sticky-cta a{
  flex:1;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 10px; border-radius: var(--radius);
  font-weight:700; font-size: 0.92rem;
}
.sticky-cta .call{ background: var(--terracotta); color:#fff; }
.sticky-cta .wa{ background:#25D366; color:#06310f; }
@media (max-width: 720px){
  .sticky-cta{ display:flex; }
  body{ padding-bottom: 78px; }
}

/* ============ Hero ============ */
.hero{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items:center;
  gap: 48px;
  padding: clamp(40px,6vw,72px) 0 clamp(56px,7vw,96px);
  overflow:hidden;
}
.hero-copy{ position:relative; z-index:2; }
.hero h1{ margin-bottom: 0.4em; }
.hero .lede{ max-width: 46ch; margin-bottom: 1.6em; }
.hero-trust{
  display:flex; flex-wrap:wrap; gap: 22px 30px; margin-top: 34px;
  font-size: var(--step-xs); color: var(--ink-soft);
}
.hero-trust strong{ color: var(--ink); font-family: var(--font-display); font-size:1.25rem; display:block; }
.hero-media{ position:relative; }
.hero-media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5; object-fit:cover; width:100%;
}
.hero-media .floating-quote{
  position:absolute; bottom:-26px; left:-26px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 230px;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--terracotta-deep);
  line-height:1.25;
  transform: rotate(-2deg);
}
@media (max-width: 880px){
  .hero{ grid-template-columns: 1fr; }
  .hero-media{ order:-1; max-width: 360px; margin: 0 auto; }
  .hero-media .floating-quote{ display:none; }
}
@media (max-width: 600px){
  .container{ padding: 0 20px; }
}

/* ============ Service cards ============ */
.service-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.service-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display:flex; flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--terracotta); }
.service-card .icon{ width:42px; height:42px; color: var(--terracotta); margin-bottom: 18px; }
.service-card h3{ margin-bottom: 8px; }
.service-card p{ color: var(--ink-soft); font-size: var(--step-sm); flex:1; }
.service-card .price{ font-family: var(--font-display); color: var(--terracotta-deep); font-weight:600; margin: 10px 0 14px; }
.service-card .more{ font-weight:600; font-size: var(--step-sm); display:inline-flex; align-items:center; gap:6px; }
.service-card.featured{ border-color: var(--terracotta); background: linear-gradient(180deg, #FFF8F0, #fff); }
@media (max-width: 980px){ .service-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px){ .service-grid{ grid-template-columns: 1fr; } }

/* ============ Process timeline ============ */
.timeline{ margin-top: 50px; }
.timeline-item{
  display:grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding-bottom: 38px; position:relative;
}
.timeline-item::before{
  content:""; position:absolute; left:31px; top:60px; bottom:-6px; width:2px;
  background: var(--line);
}
.timeline-item:last-child::before{ display:none; }
.timeline-num{
  width:64px; height:64px; border-radius:50%;
  background: var(--sage-soft); color: var(--sage);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.4rem; font-weight:600;
  flex-shrink:0;
}
.timeline-content h3{ margin-bottom:6px; }
.timeline-content p{ color: var(--ink-soft); margin-bottom:0; }

/* ============ Testimonials ============ */
.testi-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap:22px; margin-top:44px;
}
.testi-card{
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 26px; border:1px solid var(--line);
  display:flex; flex-direction:column;
}
.testi-card .stars{ color: var(--terracotta); margin-bottom:14px; font-size: 1.05rem; letter-spacing:2px; }
.testi-card p{ color: var(--ink-soft); font-size: var(--step-sm); flex:1; }
.testi-card footer{ font-weight:600; font-size: var(--step-sm); margin-top:14px; color: var(--ink); }
.testi-card footer span{ display:block; font-weight:400; color: var(--taupe); font-size: var(--step-xs); }
@media (max-width: 980px){ .testi-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .testi-grid{ grid-template-columns: 1fr; } }

/* ============ About teaser ============ */
.about-split{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap:54px; align-items:center; }
.about-split img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width:100%; aspect-ratio: 3/4; object-fit:cover; }
@media (max-width: 860px){ .about-split{ grid-template-columns:1fr; } }

/* ============ CTA band ============ */
.cta-band{
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(36px,5vw,64px);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band h2{ color:var(--paper); margin-bottom:0.3em; }
.cta-band p{ color: #D8CFC2; max-width:52ch; margin:0 auto 28px; }
.cta-band .btn-row{ justify-content:center; }

/* ============ Footer ============ */
.site-footer{ background: var(--ink); color: #C9C0B3; padding: 56px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.site-footer h4{ color: var(--paper); font-family: var(--font-body); font-size: var(--step-sm); font-weight:700; text-transform:uppercase; letter-spacing:.07em; margin-bottom:16px; }
.site-footer .logo{ color: var(--paper); }
.site-footer p{ color:#A89E8F; font-size: var(--step-sm); }
.site-footer ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.site-footer a{ color:#C9C0B3; font-size: var(--step-sm); }
.site-footer a:hover{ color: var(--terracotta); }
.footer-bottom{
  border-top:1px solid #443B33; padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size: var(--step-xs); color:#8A8174;
}
.social-row{ display:flex; gap:14px; margin-top:14px; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid #5A5145; display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background: var(--terracotta); border-color: var(--terracotta); color:#fff; }
.social-row svg{ width:18px; height:18px; }
@media (max-width: 880px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ============ Generic content page bits ============ */
.page-hero{
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb{ font-size: var(--step-xs); color: var(--taupe); margin-bottom: 18px; }
.breadcrumb a:hover{ color: var(--terracotta-deep); }
.two-col{ display:grid; grid-template-columns: 1.3fr 0.9fr; gap: 56px; align-items:start; }
@media (max-width: 900px){ .two-col{ grid-template-columns:1fr; } }

.includes-list{ list-style:none; margin: 24px 0; padding:0; display:flex; flex-direction:column; gap:14px; }
.includes-list li{ display:flex; gap:12px; align-items:flex-start; font-size: var(--step-sm); }
.includes-list svg{ width:20px; height:20px; color: var(--sage); flex-shrink:0; margin-top:2px; }

.price-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; position:sticky; top: 100px; box-shadow: var(--shadow-card);
}
.price-card .amount{ font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta-deep); margin: 6px 0 2px; }
.price-card .amount small{ font-family: var(--font-body); font-size: 1rem; color: var(--taupe); font-weight:500; }
.price-card hr{ border:none; border-top:1px solid var(--line); margin: 20px 0; }
.price-card .btn-primary{ width:100%; margin-bottom:10px; }
.price-card .btn-ghost{ width:100%; }
.price-note{ font-size: var(--step-xs); color: var(--taupe); margin-top:14px; }

.faq-item{ border-bottom:1px solid var(--line); padding: 22px 0; }
.faq-item summary{ cursor:pointer; font-weight:600; font-family: var(--font-display); font-size: 1.1rem; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:1.6rem; color: var(--terracotta); flex-shrink:0; transition: transform .2s; }
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin-top:14px; color: var(--ink-soft); }

.quote-block{
  border-left: 3px solid var(--terracotta);
  padding: 4px 0 4px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-md);
  color: var(--ink-soft);
  margin: 32px 0;
}

.lang-pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.lang-pills span{ background: var(--sage-soft); color: var(--sage); padding:6px 14px; border-radius: 20px; font-size: var(--step-xs); font-weight:600; }

.form-card{ background:var(--white); border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow-card); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:600; font-size: var(--step-sm); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 14px; border-radius: var(--radius); border:1.5px solid var(--line);
  font-family: var(--font-body); font-size: var(--step-sm); background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--terracotta); background:#fff; }
.field textarea{ resize: vertical; min-height: 120px; }
.field-hint{ font-size: var(--step-xs); color: var(--taupe); margin-top:6px; }
.radio-group{ display:flex; flex-wrap:wrap; gap:10px; }
.radio-group input{ position:absolute; opacity:0; width:0; height:0; }
.radio-group label{
  display:flex; align-items:center; gap:8px; padding:10px 16px; border:1.5px solid var(--line);
  border-radius: 20px; font-weight:500; font-size: var(--step-sm); cursor:pointer; margin:0; transition: all .15s;
}
.radio-group input:checked + label{ background: var(--terracotta); border-color: var(--terracotta); color:#fff; }

.contact-method{
  display:flex; gap:16px; align-items:flex-start; padding: 20px 0; border-bottom:1px solid var(--line);
}
.contact-method:last-child{ border-bottom:none; }
.contact-method .icon{ width:44px;height:44px;border-radius:50%; background: var(--sage-soft); color: var(--sage); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-method .icon svg{ width:20px;height:20px; }
.contact-method h3{ margin-bottom:2px; font-size:1.05rem; }
.contact-method p{ margin:0; color: var(--ink-soft); font-size: var(--step-sm); }
.contact-method a.value{ font-weight:600; color: var(--terracotta-deep); }

.map-frame{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); }

/* Reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* Utility */
.center{ text-align:center; }
.mt-0{ margin-top:0; }
.muted{ color: var(--ink-soft); }
.visually-hidden{ position:absolute; width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }
.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--ink); color:#fff; padding:12px 18px; z-index:1000; border-radius: 0 0 6px 0;
}
.skip-link:focus{ left:0; top:0; }
