/* ==========================================================================
   PB Städservice Karlstad — stylesheet
   ========================================================================== */

:root{
  --navy: #0b2036;
  --navy-dark: #071320;
  --navy-light: #16324f;
  --gold: #c9a227;
  --gold-light: #e3c463;
  --gold-dark: #9c7c1c;
  --bg: #ffffff;
  --bg-soft: #faf7f1;
  --text: #1c2530;
  --text-muted: #5c6873;
  --border: #e9e3d6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(11,32,54,.06);
  --shadow: 0 14px 40px rgba(11,32,54,.10);
  --container: 1180px;
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width:100%; }
body{
  margin:0;
  overflow-x: hidden;
  width:100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 88px 0; }
@media (max-width: 720px){ section{ padding: 56px 0; } }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight:600;
  font-size: .96rem;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(201,162,39,.35);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,162,39,.45); }
.btn-outline-light{
  border-color: rgba(255,255,255,.55);
  color:#fff;
  background: transparent;
}
.btn-outline-light:hover{ background: rgba(255,255,255,.12); border-color:#fff; }
.btn-outline-navy{
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover{ background: var(--navy); color:#fff; }
.btn-block{ width:100%; }

/* ---------- Top utility bar ---------- */
.topbar{
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .84rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:9px;
  padding-bottom:9px;
  gap: 16px;
}
.topbar-left, .topbar-right{ display:flex; align-items:center; gap:20px; flex-wrap: wrap; }
.topbar a{ display:inline-flex; align-items:center; gap:7px; }
.topbar a:hover{ color: var(--gold-light); }
.topbar svg{ width:15px; height:15px; flex-shrink:0; }
@media (max-width: 640px){
  .u-hide-sm{ display:none !important; }
}
@media (max-width: 940px){
  .u-hide-md{ display:none !important; }
}

/* ---------- Header / nav ---------- */
header.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  height: var(--header-h);
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 52px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{
  font-family:'Playfair Display', serif;
  font-size:1.18rem;
  color: var(--navy);
  letter-spacing:.02em;
}
.brand-text span{
  font-size:.72rem;
  letter-spacing:.14em;
  color: var(--gold-dark);
  text-transform:uppercase;
  font-weight:600;
}
nav.main-nav{ display:flex; align-items:center; gap: 34px; }
nav.main-nav a{
  font-weight:600;
  font-size:.96rem;
  color: var(--text);
  position:relative;
  padding: 6px 0;
}
nav.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:2px; background: var(--gold);
  transition: right .2s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after{ right:0; }
nav.main-nav a.active{ color: var(--navy); }
.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-phone{ display:flex; align-items:center; gap:8px; font-weight:700; color:var(--navy); }
.nav-phone svg{ width:18px; height:18px; color: var(--gold-dark); }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:44px; height:44px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; position:relative;
  width:24px; height:2px; background:var(--navy);
  transition: all .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-8px; }
.nav-toggle span::after{ position:absolute; top:8px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ top:0; transform:rotate(45deg); }
.nav-toggle.open span::after{ top:0; transform:rotate(-45deg); }

@media (max-width: 940px){
  nav.main-nav{
    position:fixed;
    top: var(--header-h); right:0; bottom:0; left:0;
    height: calc(100vh - var(--header-h));
    z-index: 99;
    background: #fff;
    flex-direction:column;
    align-items:flex-start;
    padding: 28px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y:auto;
  }
  nav.main-nav.open{ transform: translateX(0); }
  nav.main-nav a{ width:100%; padding: 14px 4px; border-bottom:1px solid var(--border); }
  .nav-toggle{ display:flex; }
}
@media (min-width: 941px){
  .nav-toggle{ display:none; }
  .mobile-only-cta{ display:none; }
}
.mobile-only-cta{ margin-top: 18px; width:100%; }

/* ---------- Hero ---------- */
.hero{
  background: var(--bg-soft);
  position:relative;
  overflow:hidden;
  padding: 76px 0 90px;
}
.hero::before{
  content:"";
  position:absolute; top:-120px; right:-160px;
  width:520px; height:520px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,39,.16), transparent 70%);
}
.hero .container{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items:center;
  position:relative;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  color: var(--gold-dark);
  margin-bottom:16px;
}
.kicker::before{ content:""; width:26px; height:2px; background:var(--gold); display:inline-block; }
.hero h1{ font-size: clamp(2.1rem, 4vw, 3.15rem); margin-bottom:.4em; }
.hero h1 em{ color: var(--gold-dark); font-style:normal; }
.hero p.lead{ font-size:1.12rem; color: var(--text-muted); max-width:52ch; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 30px; }
.hero-figure{
  position:relative;
  background:#fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 40px;
  display:flex; align-items:center; justify-content:center;
}
.hero-figure img{ width:100%; max-width:340px; }
.hero-figure::after{
  content:"";
  position:absolute; inset:14px;
  border: 1.5px solid var(--gold-light);
  border-radius: 20px;
  pointer-events:none;
}
.trust-row{
  display:flex; flex-wrap:wrap; gap: 28px 40px;
  margin-top: 44px; padding-top: 30px;
  border-top: 1px solid var(--border);
}
.trust-row .item{ display:flex; align-items:center; gap:10px; font-weight:600; color: var(--navy); font-size:.94rem; }
.trust-row svg{ width:20px; height:20px; color: var(--gold-dark); flex-shrink:0; }

/* ---------- Section headers ---------- */
.section-head{ max-width: 680px; margin: 0 auto 52px; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ color: var(--text-muted); font-size:1.04rem; }
.section-head.align-left{ margin: 0 0 44px; text-align:left; }

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.icon-circle{
  width:60px; height:60px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  margin-bottom: 20px;
  flex-shrink:0;
}
.icon-circle svg{ width:28px; height:28px; }
.icon-circle.navy{ background: var(--navy); color:#fff; }

.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3{ font-size: 1.2rem; margin-bottom:.4em; }
.card p{ color: var(--text-muted); margin-bottom: .6em; font-size:.96rem; }
.card .price{
  display:inline-block; margin-top:6px;
  font-weight:700; color: var(--navy);
  font-size:.9rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 999px;
}
.card .learn{ display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-weight:700; color:var(--gold-dark); font-size:.92rem; }
.card .learn svg{ width:15px; height:15px; transition: transform .2s ease; }
.card:hover .learn svg{ transform: translateX(4px); }

.feature{ display:flex; gap:16px; align-items:flex-start; }
.feature .icon-circle{ width:48px; height:48px; margin-bottom:0; }
.feature .icon-circle svg{ width:22px; height:22px; }
.feature h4{ font-size:1.02rem; margin-bottom:.25em; }
.feature p{ color: var(--text-muted); font-size:.92rem; margin:0; }

/* ---------- Alt section bg ---------- */
.section-soft{ background: var(--bg-soft); }
.section-navy{ background: var(--navy); color:#fff; }
.section-navy h2, .section-navy h3, .section-navy h4{ color:#fff; }
.section-navy p{ color: rgba(255,255,255,.78); }

/* ---------- Why-choose band ---------- */
.why-band{
  background: var(--navy);
  color:#fff;
  border-radius: 24px;
  padding: 56px 44px;
  margin-top: 10px;
}
.why-band .section-head h2, .why-band .section-head p{ color:#fff; }
.why-band .section-head p{ color: rgba(255,255,255,.75); }
.why-band .feature h4{ color:#fff; }
.why-band .feature p{ color: rgba(255,255,255,.72); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color:#fff;
  border-radius: 28px;
  padding: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:260px; height:260px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,162,39,.22), transparent 70%);
}
.cta-banner h2{ color:#fff; margin-bottom:.3em; font-size: clamp(1.5rem,3vw,2rem); }
.cta-banner p{ color: rgba(255,255,255,.8); margin:0; }
.cta-banner .actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Stats ---------- */
.stats{ display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; text-align:center; }
.stats .stat{ flex:1; min-width:130px; }
.stats .stat strong{ display:block; font-family:'Playfair Display',serif; font-size:2.1rem; color: var(--navy); }
.stats .stat span{ color: var(--text-muted); font-size:.88rem; }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }
.gallery-tile{
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1.5px dashed var(--border);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px;
  color: var(--text-muted);
  text-align:center;
  padding: 20px;
}
.gallery-tile svg{ width:34px; height:34px; color: var(--gold-dark); }
.gallery-tile strong{ color: var(--navy); font-size:.94rem; }
.gallery-tile span{ font-size:.8rem; }
.gallery-note{
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 30px;
  display:flex; gap:12px; align-items:flex-start;
}
.gallery-note svg{ width:20px; height:20px; color:var(--gold-dark); flex-shrink:0; margin-top:2px; }

/* ---------- Contact page ---------- */
.contact-wrap{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items:start; }
@media (max-width: 900px){ .contact-wrap{ grid-template-columns:1fr; } }
.contact-info-card{
  background: var(--navy);
  color:#fff;
  border-radius: var(--radius);
  padding: 40px 34px;
}
.contact-info-card h3{ color:#fff; }
.contact-info-card p{ color: rgba(255,255,255,.75); }
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin-bottom: 22px; }
.contact-line .icon-circle{ width:42px; height:42px; margin-bottom:0; }
.contact-line .icon-circle svg{ width:19px; height:19px; }
.contact-line strong{ display:block; font-size:.98rem; }
.contact-line span, .contact-line a{ color: rgba(255,255,255,.75); font-size:.92rem; }
.contact-line a:hover{ color: var(--gold-light); }
.map-embed{ border-radius: var(--radius-sm); overflow:hidden; margin-top: 26px; border: 1px solid rgba(255,255,255,.15); }
.map-embed iframe{ width:100%; height:200px; border:0; display:block; filter: grayscale(.15); }

.form-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-weight:600; font-size:.88rem; margin-bottom:7px; color: var(--navy); }
.field input, .field select, .field textarea{
  width:100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family:inherit;
  font-size: .96rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--gold); background:#fff;
}
.field textarea{ resize: vertical; min-height:120px; }
.form-note{ font-size:.82rem; color: var(--text-muted); margin-top:10px; }

/* ---------- Areas list ---------- */
.tag-list{ display:flex; flex-wrap:wrap; gap:12px; }
.tag-list span{
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight:600;
  font-size:.9rem;
  color: var(--navy);
}

/* ---------- Checklist ---------- */
.check-list li{ display:flex; gap:12px; align-items:flex-start; margin-bottom: 16px; font-weight:500; }
.check-list svg{ width:22px; height:22px; color: var(--gold-dark); flex-shrink:0; margin-top:1px; }

/* ---------- Breadcrumb / page header ---------- */
.page-hero{
  background: var(--navy);
  color:#fff;
  padding: 64px 0 58px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; left:-100px; bottom:-140px;
  width:360px; height:360px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,162,39,.18), transparent 70%);
}
.page-hero h1{ color:#fff; margin-bottom:.3em; font-size: clamp(2rem,4vw,2.7rem); }
.page-hero p{ color: rgba(255,255,255,.75); max-width:58ch; margin:0 auto; }
.breadcrumb{ font-size:.84rem; color: rgba(255,255,255,.55); margin-bottom:14px; letter-spacing:.04em; text-transform:uppercase; }
.breadcrumb span{ color: var(--gold-light); }

/* ---------- Footer ---------- */
footer.site-footer{ background: var(--navy-dark); color: rgba(255,255,255,.72); }
.footer-top{ padding: 68px 0 40px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand .icon-circle{ margin-bottom:0; width:46px; height:46px; }
.footer-brand strong{ display:block; color:#fff; font-family:'Playfair Display',serif; font-size:1.15rem; }
.footer-brand span{ font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold-light); }
footer.site-footer h5{ color:#fff; font-size:.92rem; letter-spacing:.06em; text-transform:uppercase; margin-bottom:20px; font-family:'Inter',sans-serif; font-weight:700; }
footer.site-footer li{ margin-bottom:12px; font-size:.92rem; }
footer.site-footer a:hover{ color: var(--gold-light); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; color: var(--gold-light); margin-top:3px; flex-shrink:0; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size:.82rem;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color: rgba(255,255,255,.5);
}
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ background: var(--gold); color: var(--navy-dark); }
.social-row svg{ width:17px; height:17px; }

/* ---------- Sticky mobile call button ---------- */
.mobile-call{
  display:none;
  position: fixed; left:16px; right:16px; bottom:16px;
  z-index: 90;
  background: var(--navy);
  color:#fff;
  border-radius: 999px;
  padding: 14px 20px;
  align-items:center; justify-content:center; gap:10px;
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.mobile-call svg{ width:19px; height:19px; color: var(--gold-light); }
@media (max-width: 720px){ .mobile-call{ display:flex; } body{ padding-bottom: 78px; } }

/* ---------- Misc ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.divider-gold{ width:64px; height:3px; background: var(--gold); border-radius:2px; margin: 18px auto 0; }
.section-head.align-left .divider-gold{ margin: 18px 0 0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width: 860px){ .two-col{ grid-template-columns:1fr; } }
.badge-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:24px; }
.badge-row .badge{ display:flex; align-items:center; gap:8px; font-size:.88rem; font-weight:600; color: var(--navy); background: var(--bg-soft); border:1px solid var(--border); padding:8px 16px; border-radius:999px; }
.badge-row svg{ width:16px; height:16px; color: var(--gold-dark); }
