/* ============================================================
   Hausmeisterservice Wiegels — Stylesheet
   Palette: Dunkelgruen #2E7D32 / Tiefgruen #1B5E20 / Anthrazit #2C2C2C
   Type: Poppins (Display) / Inter (Body)
   ============================================================ */

:root{
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-tint: #EAF4EB;
  --green-tint-2: #DCEFDD;
  --anthracite: #2C2C2C;
  --anthracite-soft: #3D3D3D;
  --white: #FFFFFF;
  --gray-50: #F7F8F7;
  --gray-100: #EEF0EE;
  --gray-400: #9AA09A;
  --gray-600: #6B716B;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(44,44,44,0.06);
  --shadow-md: 0 12px 32px rgba(44,44,44,0.12);
  --shadow-green: 0 10px 28px rgba(46,125,50,0.28);

  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{
  font-family: var(--font-display);
  margin:0 0 .5em;
  line-height:1.15;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color: var(--gray-600); }
a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
.section{ padding: 96px 0; }
.section-alt{ background: var(--gray-50); }
.section-dark{ background: var(--anthracite); color: var(--white); }
.section-dark p{ color: #C7CAC7; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color: var(--green); margin-bottom:14px;
}
.eyebrow::before{
  content:''; width:22px; height:2px; background: var(--green); border-radius:2px;
}
.section-head{ max-width: 640px; margin: 0 0 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 4vw, 40px); font-weight:700; color: var(--anthracite); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-weight:600; font-size:15px; border:2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn-primary{ background: var(--green); color:var(--white); box-shadow: var(--shadow-green); }
.btn-primary:hover{ background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(46,125,50,.34); }
.btn-outline{ background:transparent; border-color: var(--anthracite); color:var(--anthracite); }
.btn-outline:hover{ background: var(--anthracite); color:var(--white); transform: translateY(-2px); }
.btn-outline.on-dark{ border-color: rgba(255,255,255,.5); color:var(--white); }
.btn-outline.on-dark:hover{ background: var(--white); color: var(--anthracite); }
.btn-ghost{ background: var(--green-tint); color: var(--green-dark); }
.btn-ghost:hover{ background: var(--green-tint-2); transform: translateY(-2px); }
.btn-sm{ padding:10px 18px; font-size:13px; }
.btn-block{ width:100%; }

/* ---------- Topbar utility strip ---------- */
.topbar{
  background: var(--anthracite); color:#D7DAD7; font-size:13px;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding-top:8px; padding-bottom:8px; flex-wrap:wrap; gap:6px; }
.topbar a{ color:#D7DAD7; }
.topbar a:hover{ color: #7ED08A; }
.topbar-links{ display:flex; gap:20px; align-items:center; }
.topbar-links span{ opacity:.55; }

/* ---------- Header / Nav ---------- */
header.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding: 12px 0; gap: 24px; }
.logo{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.logo-mark{ height:46px; width:auto; object-fit:contain; flex-shrink:0; }
.logo-text{ font-family: var(--font-display); line-height:1.05; }
.logo-text b{ display:block; font-size:16px; font-weight:700; color:var(--anthracite); }
.logo-text span{ display:block; font-size:11px; letter-spacing:.08em; color: var(--green); font-weight:600; text-transform:uppercase; }

.main-nav{ display:flex; gap: 30px; }
.main-nav a{
  font-size:14.5px; font-weight:600; color: var(--anthracite-soft);
  position:relative; padding: 6px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--green);
  transition: width .25s ease;
}
.main-nav a:hover{ color: var(--green-dark); }
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.icon-btn{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--green-tint); color: var(--green-dark); transition: all .2s ease; flex-shrink:0;
}
.icon-btn:hover{ background: var(--green); color:var(--white); transform: translateY(-2px); }
.icon-btn.whatsapp{ background:#E4F5E7; color:#25902F; }
.icon-btn.whatsapp:hover{ background:#25902F; color:var(--white); }
.icon-btn svg{ width:20px; height:20px; }

.burger{ display:none; width:44px; height:44px; border:none; background:var(--gray-100); border-radius:50%; align-items:center; justify-content:center; }
.burger svg{ width:22px; height:22px; }

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background: linear-gradient(160deg, #1F2320 0%, var(--anthracite) 55%, #24352A 100%);
  color: var(--white);
  padding: 90px 0 120px;
}
.hero-arc{
  position:absolute; top:-220px; right:-220px; width:640px; height:640px;
  border-radius:50%; border: 26px solid var(--green); opacity:.16;
  clip-path: inset(0 0 0 0);
  mask-image: conic-gradient(from -40deg, black 0deg 300deg, transparent 300deg 360deg);
  -webkit-mask-image: conic-gradient(from -40deg, black 0deg 300deg, transparent 300deg 360deg);
}
.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns: 1.05fr .95fr; gap:56px; align-items:center; }
.hero-eyebrow{ display:inline-flex; gap:8px; align-items:center; background: rgba(46,125,50,.22); border:1px solid rgba(126,208,138,.35); color:#9BE3A6; font-size:13px; font-weight:600; letter-spacing:.06em; padding:8px 16px; border-radius: var(--radius-pill); margin-bottom:26px; }
.hero h1{ font-size: clamp(34px, 4.6vw, 54px); font-weight:700; color:var(--white); max-width: 620px; }
.hero .lead{ font-size:18px; color:#9BE3A6; font-weight:600; margin-bottom:26px; }
.hero p.desc{ color:#C7CAC7; font-size:16px; max-width:520px; }
.hero-actions{ display:flex; gap:14px; margin-top: 34px; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:28px; margin-top:48px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; }
.hero-trust b{ font-family:var(--font-display); font-size:26px; color:var(--white); }
.hero-trust span{ font-size:13px; color:#9CA39C; }

.hero-visual{ position:relative; }
.hero-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.35);
  transform: rotate(1.2deg);
}
.hero-card svg{ border-radius: var(--radius-md); display:block; width:100%; height:auto; }
.hero-floating{
  position:absolute; bottom:-26px; left:-26px; background:var(--white); color:var(--anthracite);
  border-radius: var(--radius-md); padding:16px 20px; box-shadow: var(--shadow-md);
  display:flex; align-items:center; gap:12px; max-width:250px;
}
.hero-floating .dot{ width:44px; height:44px; border-radius:50%; background: var(--green-tint); display:flex; align-items:center; justify-content:center; color:var(--green-dark); flex-shrink:0; }
.hero-floating strong{ display:block; font-size:14px; }
.hero-floating span{ font-size:12.5px; color: var(--gray-600); }

/* ---------- Season strip (signature element) ---------- */
.season-strip{ background: var(--green); padding: 22px 0; }
.season-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.season-item{ display:flex; align-items:center; gap:10px; color: rgba(255,255,255,.94); font-size:14px; font-weight:600; }
.season-item svg{ width:22px; height:22px; flex-shrink:0; }
.season-sep{ width:1px; height:22px; background: rgba(255,255,255,.3); }

/* ---------- Service cards ---------- */
.service-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card{
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 34px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative; overflow:hidden;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon{
  width:56px; height:56px; border-radius: var(--radius-sm); background: var(--anthracite);
  display:flex; align-items:center; justify-content:center; color:var(--white); margin-bottom: 22px;
}
.service-photo{
  margin: -34px -28px 22px; height:170px; overflow:hidden;
}
.service-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.service-card:hover .service-photo img{ transform: scale(1.06); }
.service-card:nth-child(2) .service-icon{ background: var(--green); }
.service-card:nth-child(3) .service-icon{ background: var(--anthracite); }
.service-card:nth-child(4) .service-icon{ background: var(--green); }
.service-icon svg{ width:28px; height:28px; }
.service-card h3{ font-size:19px; margin-bottom:12px; }
.service-card ul{ margin-bottom: 18px; }
.service-card li{
  font-size:14.5px; color:var(--gray-600); padding: 5px 0 5px 24px; position:relative;
}
.service-card li::before{
  content:''; position:absolute; left:0; top:13px; width:8px; height:8px; border-radius:50%;
  background: var(--green-tint-2); border: 2px solid var(--green);
}
.service-card .more{ font-size:13.5px; font-weight:700; color: var(--green-dark); display:inline-flex; align-items:center; gap:6px; }

/* ---------- Why us tiles ---------- */
.why-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.why-tile{
  text-align:center; padding: 40px 22px; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
}
.why-tile:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-check{
  width:52px; height:52px; border-radius:50%; background: var(--green-tint); color:var(--green-dark);
  display:flex; align-items:center; justify-content:center; margin: 0 auto 18px;
}
.why-check svg{ width:24px; height:24px; }
.why-tile h4{ font-size:16.5px; margin-bottom:8px; }
.why-tile p{ font-size:14px; margin:0; }

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items:center; }
.about-visual{ position:relative; }
.about-visual svg{ border-radius: var(--radius-lg); width:100%; height:auto; box-shadow: var(--shadow-md); }
.about-stat{
  position:absolute; bottom:-24px; right:-20px; background:var(--green); color:var(--white);
  border-radius: var(--radius-md); padding: 20px 26px; box-shadow: var(--shadow-green);
}
.about-stat b{ display:block; font-family:var(--font-display); font-size:30px; }
.about-stat span{ font-size:12.5px; opacity:.9; }
.about-list{ margin-top:22px; display:flex; flex-direction:column; gap:14px; }
.about-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--anthracite-soft); font-weight:500; }
.about-list svg{ width:20px; height:20px; color: var(--green); flex-shrink:0; margin-top:2px; }

/* ---------- Gallery ---------- */
.gallery-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 40px; }
.gallery-tab{
  padding: 10px 20px; border-radius: var(--radius-pill); font-size:13.5px; font-weight:700;
  background: var(--white); border:1px solid var(--gray-100); color: var(--anthracite-soft);
}
.gallery-tab.active{ background: var(--anthracite); color:var(--white); border-color: var(--anthracite); }
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item{ position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 4/3; }
.gallery-item svg{ width:100%; height:100%; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .4s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-tag{
  position:absolute; top:12px; left:12px; background: rgba(44,44,44,.75); color:var(--white);
  font-size:11.5px; font-weight:700; padding:5px 12px; border-radius: var(--radius-pill); letter-spacing:.03em;
}

/* ---------- Testimonials ---------- */
.rating-summary{ display:flex; align-items:center; gap:16px; margin-bottom: 44px; }
.rating-stars{ color:#F5A623; display:flex; gap:3px; }
.rating-stars svg{ width:22px; height:22px; }
.rating-summary b{ font-family:var(--font-display); font-size:22px; }
.rating-summary span{ color:var(--gray-600); font-size:14px; }
.testi-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card{ background: var(--white); border-radius: var(--radius-lg); padding: 28px; border:1px solid var(--gray-100); }
.testi-stars{ color:#F5A623; display:flex; gap:2px; margin-bottom:14px; }
.testi-stars svg{ width:15px; height:15px; }
.testi-card p{ font-size:14.5px; color: var(--anthracite-soft); }
.testi-author{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.testi-avatar{
  width:40px; height:40px; border-radius:50%; background: var(--green-tint); color:var(--green-dark);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--font-display); font-size:14px;
}
.testi-author b{ display:block; font-size:14px; }
.testi-author span{ font-size:12.5px; color:var(--gray-600); }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg); padding: 56px; display:flex; align-items:center; justify-content:space-between;
  gap: 30px; flex-wrap:wrap; color:var(--white); position:relative; overflow:hidden;
}
.cta-band h3{ font-size: clamp(22px,3vw,30px); color:var(--white); max-width:520px; }
.cta-band p{ color: rgba(255,255,255,.85); margin:0; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.cta-band .btn-primary{ background: var(--white); color: var(--green-dark); box-shadow:0 10px 26px rgba(0,0,0,.2); }
.cta-band .btn-primary:hover{ background: var(--anthracite); color:var(--white); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.form-card{ background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size:13px; font-weight:700; color:var(--anthracite); margin-bottom:7px; }
.field input, .field textarea, .field select{
  width:100%; padding: 13px 16px; border-radius: var(--radius-sm); border:1.5px solid var(--gray-100);
  font-family: var(--font-body); font-size:14.5px; background: var(--gray-50); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color: var(--green); background: var(--white);
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:12.5px; color: var(--gray-400); margin-top:10px; }

.contact-info{ display:flex; flex-direction:column; gap:20px; }
.info-card{ display:flex; gap:16px; align-items:flex-start; padding: 22px; border-radius: var(--radius-md); background: var(--gray-50); }
.info-icon{ width:46px; height:46px; border-radius:50%; background: var(--green); color:var(--white); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-icon svg{ width:20px; height:20px; }
.info-card h4{ font-size:15px; margin-bottom:4px; }
.info-card p{ margin:0; font-size:14px; }
.info-card a{ color: var(--green-dark); font-weight:700; }
.map-box{ border-radius: var(--radius-md); overflow:hidden; }

.alert{ padding:14px 18px; border-radius: var(--radius-sm); font-size:14px; margin-bottom:18px; font-weight:600; }
.alert-success{ background:#E4F5E7; color:#1B5E20; }
.alert-error{ background:#FCE8E6; color:#B3261E; }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--anthracite); color:#C7CAC7; padding: 70px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .logo-text b{ color:var(--white); }
.footer-brand p{ font-size:14px; max-width:280px; margin-top:14px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition: background .2s ease; }
.footer-social a:hover{ background: var(--green); }
.footer-social svg{ width:17px; height:17px; }
footer h5{ color:var(--white); font-family: var(--font-display); font-size:15px; margin-bottom:18px; }
.footer-links li{ margin-bottom:11px; font-size:14px; }
.footer-links a:hover{ color: var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 24px 0; font-size:13px; color: var(--gray-400); flex-wrap:wrap; gap:10px; }
.footer-bottom a:hover{ color: var(--white); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{ display:none; }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .service-grid, .why-grid{ grid-template-columns: repeat(2,1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ max-width: 460px; }
  .about-grid, .contact-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .testi-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px){
  .main-nav{ display:none; }
  .burger{ display:flex; }
  .topbar .topbar-links{ display:none; }

  .nav-row{ padding: 10px 0; gap:10px; }
  .logo-mark{ height:36px; }
  .logo-text b{ font-size:14px; }
  .logo-text span{ font-size:9.5px; }
  .header-actions{ gap:8px; }
  .header-actions .icon-btn{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .burger{ width:40px; height:40px; }

  .section{ padding: 64px 0; }
  .service-grid, .why-grid, .testi-grid, .gallery-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction:column; text-align:center; padding: 40px 26px; }
  .cta-actions{ justify-content:center; }
  .footer-grid{ grid-template-columns: 1fr; gap:32px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .mobile-cta{
    display:flex; position:fixed; bottom:0; left:0; right:0; z-index:200;
    background:var(--white); box-shadow: 0 -6px 20px rgba(0,0,0,.12); padding:10px 14px;
    gap:10px;
  }
  .mobile-cta a{ flex:1; }
  body{ padding-bottom: 70px; }
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; background: rgba(44,44,44,.55); z-index:300; opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.mobile-nav.open{ opacity:1; pointer-events:auto; }
.mobile-nav-panel{
  position:absolute; top:0; right:0; width:82%; max-width:340px; height:100%; background:var(--white);
  padding: 26px 26px; transform: translateX(100%); transition: transform .3s ease; display:flex; flex-direction:column;
}
.mobile-nav.open .mobile-nav-panel{ transform:none; }
.mobile-nav-panel a{ display:block; padding: 14px 0; font-weight:700; font-size:16px; border-bottom:1px solid var(--gray-100); }
.mobile-close{ align-self:flex-end; width:40px; height:40px; border-radius:50%; background: var(--gray-100); border:none; display:flex; align-items:center; justify-content:center; margin-bottom:10px; }
