@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #444444;
  --line: #e9e9e9;

  --accent: #ef6c00;
  --accent-2: #ef6c00;
  --soft: #f7f7f7;

  --radius: 8px;
  --container: 1180px;
  --font-serif: "Roboto", serif;
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-nav: "Inter", system-ui, -apple-system, sans-serif;
}

/* =========================
   BAS
   ========================= */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

/* HÃ¶j allt ca 25% (inom 20â€“30%) */
html{ font-size: 125%; }


html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

html, body{
  overflow-x: hidden;
}

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Typography */
h1, h2{
  font-family: var(--font-serif);
  font-weight: 600;
}

h1{
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

h2{
  font-size: 1.7rem;
  margin: 0 0 .7rem;
}

h3, h4, h5, h6,
p, a, button{
  font-family: var(--font-sans);
}

p{
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.measure{ max-width: 85ch; }

/* =========================
   HEADER
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-row{
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
}

.logo{
  display: flex;
  align-items: center;
}

.logo-img{
  height: 78px;
  width: auto;
  display: block;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-link{
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #111;
  padding: .25rem .1rem;
  position: relative;
}

.nav-link:hover{ color: var(--accent); }

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  opacity:.9;
}
.nav-link:hover::after{ transform: scaleX(1); }

.header-cta{
  display: inline-block;
  padding: .75rem 1.1rem;
  background: var(--accent);
  color: #000;   /* ← ändra denna */
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
}

/* Hamburgare: ingen border, ingen rundning */
.menu-btn{
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 0;
  cursor: pointer;

  font-size: 28px;
  font-weight: 900;     /* fetare */
  line-height: 1;
  padding: 0;
}

/* Mobile menu */
.mobile-nav{
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav-inner{
  display: grid;
  gap: .7rem;
  padding: 1rem 0 1.2rem;
  justify-items: center;
  text-align: center;
}

.mobile-nav-inner a{
  width: 100%;
  text-align: center;
  padding: .7rem .2rem;
  color: var(--text);
}

.mobile-cta{
  margin-top: .6rem;
  width: 100%;
  text-align: center;
}

/* =========================
   HERO â€“ FULL WIDTH VIDEO
   ========================= */
.hero-bg{
  position: relative;
  width: 100%;
}

.hero-bg__media{
  position: relative;
  width: 100%;
  height: clamp(450px, 65vh, 750px);
  overflow: hidden;
  background: #000;
}

.hero-bg__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg__shade{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.hero-bg__play{ display: none !important; }

.hero-bg__content{
  position: relative;
}

/* White overlapping card â€“ minimal skugga */
.hero-bg__card{
  position: relative;
  margin-top: -120px;
  width: min(820px, 100%);
  background: #fff;
  padding: 2.5rem 2.8rem;
  border: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.hero-lead{
  margin: .9rem 0 0;
  max-width: 68ch;
}

/* =========================
   SECTION
   ========================= */
.section{
  padding: 3rem 0;
}

.section--soft{
  position: relative;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 5rem 0;

  color: #fff;
  background-image: url("munter.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.section--soft::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    rgba(0,0,0,.70),
    rgba(0,0,0,.80)
  );
}

.section--soft > .container{
  position: relative;
  z-index: 1;
}

.section--soft h1,
.section--soft h2,
.section--soft h3{
  color: #fff;
}

.section--soft p{
  color: rgba(255,255,255,.92);
}

@supports (-webkit-touch-callout: none){
  .section--soft{
    background-attachment: scroll;
  }
}

.btn{
  display: inline-block;
  padding: .9rem 1.6rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}

/* =========================
   WHY (text vÃ¤nster + collage hÃ¶ger)
   ========================= */
.why-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.2rem;
  align-items: start;
}

.why-tagline{
  margin: 0 0 .55rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

#tjanster .why-grid{
  padding-bottom: 25px;
}

.services{
  margin-top: 2.2rem;
}

.services-title{
  margin-bottom: 1rem;
}

/* =========================
   CARDS â€“ Lika hÃ¶ga Ã¶verallt
   ========================= */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.card{
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon{
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex: 0 0 auto;
}

.card-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Textbox â€“ minimal skugga */
.card-body{
  background: #fff;
  padding: 1rem;
  width: 88%;
  margin: -60px auto 0 auto;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h3{
  margin: 0 0 .6rem;
  font-size: 1.15rem;
}

.card p{
  margin: 0;
  line-height: 1.55;
}

/* =========================
   KOLLAGE â€“ OVERLAP
   ========================= */
.collage.collage--overlap{
  position: relative;
  display: block;
  width: min(720px, 100%);
  margin-left: auto;
  aspect-ratio: 4 / 3;
}

.collage--overlap .collage__img{
  position: absolute;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 22px rgba(0,0,0,.10); /* minskad skugga */
  background: #fff;
}

.collage--overlap .collage__img--main{
  top: 0;
  right: 0;
  width: 78%;
  height: 86%;
  z-index: 1;
}

.collage--overlap .collage__img--left{
  left: 0;
  bottom: 0;
  width: 42%;
  height: 52%;
  z-index: 2;
}

/* =========================
   MAP SECTION (vit bakgrund)
   ========================= */
.map-section{
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.map-sub{
  margin-top: .3rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.map-embed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.map-embed iframe{
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

/* =========================
   CONTACT FORM
   ========================= */
.contact-section{
  padding: 3.5rem 0 4rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

/* minimal skugga + inga rundade hÃ¶rn om du vill (kan lÃ¤mnas) */
.contact-form{
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1.6rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field{
  display: grid;
  gap: .45rem;
}

.form-field label{
  font-weight: 700;
  font-size: .92rem;
  color: #1a1a1a;
}

.form-field input,
.form-field textarea{
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.7rem;
  outline: none;
  background: #fff;
}

.form-field textarea{
  resize: vertical;
  min-height: 190px;
}

.form-field input:focus,
.form-field textarea:focus{
  border-color: rgba(38,50,56,.55);
  box-shadow: 0 0 0 3px rgba(38,50,56,.08);
}

.form-actions{
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note{
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}



/* =========================
   FOOTER
   ========================= */
.footer{
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: #000;
  color: #fff;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.footer h3{
  color: #fff;
  margin: 0 0 .65rem;
  font-size: 1rem;
  line-height: 1.2;
}

.footer p{
  color: rgba(255,255,255,.86);
  margin: 0 0 .5rem;
  line-height: 1.35;
}

.footer a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.footer a:hover{
  color: #fff;
  text-decoration: underline;
}

/* Bara menylänkarna ska ligga på egna rader */
.footer-menu{
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.footer-link{
  display: inline-block;
  line-height: 1.3;
}

/* Adress från RTE */
.footer-address,
.footer-address p{
  margin: 0;
  line-height: 1.35;
}

.footer-address p + p{
  margin-top: .25rem;
}

/* Kontaktinfo ska INTE tvingas till egna blockrader */
.contact-lines{
  margin-top: .6rem;
  line-height: 1.35;
}

.contact-lines span{
  display: inline;
}

.contact-lines a{
  display: inline;
  margin: 0;
  word-break: normal;
  overflow-wrap: normal;
}

/* Social */
.social{
  display: flex;
  gap: .75rem;
  justify-content: flex-start;
}

.social a{
  display: inline-block;
  margin: 0;
}

/* Copyright */
.footer-copy{
  margin-top: .75rem;
  font-size: .9rem;
  opacity: .9;
}

/* QR */
.footer-qr{
  max-width: 120px;
}

.footer-qr-text{
  margin-bottom: .4rem;
  line-height: 1.25;
}

.footer-qr img{
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
}

/* Mobil */
@media (max-width: 1024px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-qr{
    max-width: 100px;
  }

  .footer-qr img{
    max-width: 100px;
  }
}

/* =========================
   QUICK DOCK
   ========================= */
.quick-dock{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 10px;
  align-items: end;

  --dock-ico: #ef6c00;
}

.quick-dock__box{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;                 /* ingen rundning */
  box-shadow: 0 6px 14px rgba(0,0,0,.08); /* kraftigt minskad */
}

.qd-btn{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 0;                 /* ingen rundning */

  display: grid;
  justify-items: center;
  gap: 6px;

  font-weight: 700;
  font-size: .82rem;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.qd-btn:hover{ background: #f6f8fa; }

.qd-ico{
  width: 42px;
  height: 42px;
  display: block;
  color: var(--dock-ico);
}

.quick-dock .dock-panel{
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(320px, calc(100vw - 36px));
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;                 /* ingen rundning */
  box-shadow: 0 8px 18px rgba(0,0,0,.10); /* minskad */
  overflow: hidden;
  letter-spacing: -0.01em;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px){
  .nav{ display: none; }
  .menu-btn{
    display: block;
    justify-self: end;      /* till hÃ¶ger */
    font-weight: 900;       /* fetare */
  }

  .header-row{
    grid-template-columns: auto 1fr auto;
  }

  .header-cta{ display: none; }

  .why-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }

  .footer-grid{ grid-template-columns: 1fr; }
  .footer-meta{ align-items: flex-start; }
  .social{ justify-content: flex-start; }

  .hero-bg__card{
    margin-top: -70px;
    padding: 1.6rem;
  }

  .map-embed iframe{ height: 340px; }

  .collage.collage--overlap{
    width: 100%;
    margin-left: 0;
    aspect-ratio: 16 / 11;
  }

  .collage--overlap .collage__img--main{
    width: 100%;
    height: 62%;
  }

  .collage--overlap .collage__img--left{
    width: 48%;
    height: 40%;
    bottom: 0;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }

  /* Dockan: fullbredd lÃ¤ngst ned */
  .quick-dock{
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    gap: 0;
  }

  .quick-dock__box{
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
    border-radius: 0;
    padding: 12px 10px;
  }

  .quick-dock .dock-panel{
    right: 0;
    left: 0;
    width: 100%;
    bottom: 64px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
}

/* Mindre text i dockan pÃ¥ mobil */
@media (max-width: 1024px){
  .qd-btn{
    font-size: .74rem;   /* var .82rem */
  }
}

.dock-panel__inner{
  padding: 10px;
}

/* Telefon-ringing animation */
@keyframes phoneRing {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(-18deg); }
  20%  { transform: rotate(18deg); }
  30%  { transform: rotate(-14deg); }
  40%  { transform: rotate(14deg); }
  50%  { transform: rotate(-10deg); }
  60%  { transform: rotate(10deg); }
  70%  { transform: rotate(-6deg); }
  80%  { transform: rotate(6deg); }
  90%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

.qd-btn--ringing .qd-ico{
  transform-origin: 50% 50%;
  animation: phoneRing 0.9s ease-in-out;
}

.header-cta{
  color: #000 !important;
}

@media (max-width: 1024px){
  .mobile-cta{
    color: #000 !important;
  }
}

/* Header mÃ¥ste ligga Ã¶ver hero/video */
.site-header{
  position: sticky;   /* eller fixed om du anvÃ¤nder det */
  top: 0;
  z-index: 99999;
}

/* Video + shade ska INTE kunna fÃ¥nga klick */
.hero-bg__media,
.hero-bg__video,
.hero-bg__shade{
  pointer-events: none;
}

/* Se till att innehÃ¥llet i headern faktiskt kan ta emot klick */
.site-header,
.site-header *{
  pointer-events: auto;
}

/* Instagram accordion */
.ig-accordion{
  padding: 18px 0;
}

.ig-accordion__toggle{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.ig-accordion__toggle:hover{
  border-color: rgba(0,0,0,.2);
}

.ig-accordion__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  font-size: 20px;
  line-height: 1;
}

.ig-accordion__text{
  font-weight: 600;
}

.ig-accordion__panel{
  margin-top: 12px;
}

.ig-accordion__content{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.hero-bg {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
}

.hero-bg__media {
    position: relative;
    width: 100vw;
    height: 520px; /* ca +30% */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.hero-bg__slider,
.hero-bg__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg__slide {
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-bg__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg__image,
.hero-bg__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 🔥 text ovanpå bild – placerad neråt */
.hero-bg__content {
    position: absolute;
        bottom: 0px;
    margin-left: 59px;

    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 1320px;
}

/* ta bort vita kortet */
.hero-bg__card {
    max-width: 820px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* rubrik */
.hero-bg__card h1 {
    color: #fff;
    margin: 0 0 16px 0;
       font-size: 4em;

    line-height: 1.1;
    max-width: 1200px;
       font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700
}

/* ingress */
.hero-lead {
   color: #fff!important;
    background: none;
    padding: 0;
    margin: 0;
    max-width: 700px;
}

.hero-bg__card p,
.hero-bg__card p * {
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #fff !important;
}


.hero-lead,
.hero-lead * {
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
}

/* valfri overlay för bättre läsbarhet */
.hero-bg__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}




  :target { scroll-margin-top: 120px; }
        .site-header { position: sticky; top: 0; z-index: 999999; }
        .quick-dock { z-index: 999999; }
        .hero-bg__media,
        .hero-bg__shade,
        .hero-bg__video,
        .hero-bg__media::before,
        .hero-bg__media::after,
        .hero-bg::before,
        .hero-bg::after { pointer-events: none; }
        .site-header, .site-header *, .quick-dock, .quick-dock * { pointer-events: auto; }

.umb-block-grid__layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.umb-block-grid__layout-item {
    grid-column: span var(--umb-block-grid--item-column-span);
}

.freeblock {
    width: 100%;
    box-sizing: border-box;
}
