*{box-sizing:border-box}html{scroll-behavior:smooth}
body{margin:0;font-family:Nunito,Arial,sans-serif;background:#f5f7f5;color:#26332b;line-height:1.7}
a{color:#356347}.container{width:min(1200px,calc(100% - 40px));margin:auto}
.skip-link{position:absolute;top:-100px;left:20px;padding:10px 20px;background:#fff;z-index:5000}.skip-link:focus{top:20px}
header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.96);border-bottom:1px solid #e2e5e2;transition:box-shadow .25s}header.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.12)}
.header-inner{min-height:90px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{text-decoration:none;color:#26332b}.brand-name{display:block;font-size:25px;font-weight:800;line-height:1.1}.brand-subtitle{display:block;margin-top:4px;font-size:13px;font-weight:600;color:#66806e}
nav ul{display:flex;align-items:center;gap:6px;margin:0;padding:0;list-style:none}nav a{display:block;padding:12px 15px;border-radius:7px;color:#26332b;text-decoration:none;font-size:14px;font-weight:700}nav a:hover,nav a.active{background:#e8f0ea;color:#285b3a}
.menu-button{display:none;border:0;background:transparent;font-size:32px;color:#26332b;cursor:pointer}.overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:800}.overlay.show{display:block}
.hero{min-height:520px;display:flex;align-items:center;color:#fff;background:linear-gradient(90deg,rgba(19,42,28,.90),rgba(19,42,28,.55)),url("/img/boplatsen.jpg") center/cover}
.hero-content{max-width:700px;padding:70px 0}.hero-label,.news-label{font-size:13px;font-weight:800;letter-spacing:1.2px}.hero h1{margin:8px 0 15px;font-size:clamp(42px,6vw,70px);line-height:1.05}.hero p{font-size:20px}
.button{display:inline-block;padding:11px 18px;border-radius:8px;background:#356347;color:#fff;text-decoration:none;font-weight:800}.button-light{background:#fff;color:#285b3a}
.news-area{margin-top:-35px;position:relative}.news-box{display:flex;justify-content:space-between;align-items:center;gap:25px;padding:28px 32px;background:#fff;border-radius:14px;box-shadow:0 8px 30px rgba(0,0,0,.10)}.news-box h2{margin:4px 0 0}
.intro{padding:70px 0 25px;text-align:center}.intro h2{font-size:34px;margin:0 0 8px}
.cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px;padding:30px 0 90px}.card{overflow:hidden;background:#fff;border-radius:14px;box-shadow:0 5px 20px rgba(0,0,0,.06)}.card-wide{grid-column:1/-1}.card-image img{display:block;width:100%;height:240px;object-fit:cover}.card-wide .card-image img{height:330px}.card-content{padding:28px}.card-content h2{margin-top:0}
footer{padding:45px 0;background:#1f3326;color:#dbe5dd}.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:30px}footer strong{color:#fff}footer p{margin:3px 0}footer a{color:#fff}
#toTop{display:block;opacity:0;visibility:hidden;pointer-events:none;position:fixed;right:25px;bottom:25px;width:50px;height:50px;border:0;border-radius:50%;background:#356347;color:#fff;font-size:24px;cursor:pointer;box-shadow:0 4px 15px rgba(0,0,0,.2);z-index:700;transition:opacity .2s,visibility .2s}#toTop.show{opacity:1;visibility:visible;pointer-events:auto}
dialog.modal{max-width:520px;border:0;border-radius:14px;padding:30px;box-shadow:0 15px 60px rgba(0,0,0,.3)}dialog::backdrop{background:rgba(0,0,0,.5)}
@media(max-width:850px){.header-inner{min-height:75px}.brand-name{font-size:20px}.brand-subtitle{display:none}.menu-button{display:block;z-index:1100}nav{position:fixed;top:0;right:-320px;width:300px;height:100vh;padding:100px 25px 30px;background:#fff;box-shadow:-5px 0 25px rgba(0,0,0,.2);transition:right .3s;z-index:900}nav.open{right:0}nav ul{display:block}nav li{border-bottom:1px solid #e3e6e3}nav a{padding:17px 10px;border-radius:0;font-size:16px}.cards{grid-template-columns:1fr}.card-wide{grid-column:auto}.footer-inner{flex-direction:column;align-items:flex-start}}
@media(max-width:520px){.container{width:min(100% - 30px,1200px)}.hero{min-height:450px}.news-box{align-items:flex-start;flex-direction:column}.card-image img,.card-wide .card-image img{height:220px}}


* {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Nunito, Arial, sans-serif;
      background: #f5f7f5;
      color: #26332b;
      line-height: 1.7;
    }

    a {
      color: #356347;
    }

    a:hover {
      color: #274c35;
    }

    .container {
      width: min(1100px, calc(100% - 40px));
      margin: auto;
    }

    .skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      padding: 10px 20px;
      background: #fff;
      z-index: 5000;
    }

    .skip-link:focus {
      top: 20px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid #e2e5e2;
      transition: box-shadow .25s ease;
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
    }

    .header-inner {
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      text-decoration: none;
      color: #26332b;
    }

    .brand-name {
      display: block;
      font-size: 25px;
      font-weight: 800;
      line-height: 1.1;
    }

    .brand-subtitle {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      font-weight: 600;
      color: #66806e;
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    nav a {
      display: block;
      padding: 12px 15px;
      border-radius: 7px;
      color: #26332b;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }

    nav a:hover,
    nav a.active {
      background: #e8f0ea;
      color: #285b3a;
    }

    .menu-button {
      display: none;
      border: 0;
      background: transparent;
      font-size: 32px;
      color: #26332b;
      cursor: pointer;
    }

    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 800;
    }

    /* Sidhuvud */
    .page-hero {
      padding: 75px 0 65px;
      background:
        linear-gradient(90deg, rgba(19, 42, 28, .92), rgba(19, 42, 28, .68)),
        url("/img/boplatsen.jpg") center/cover;
      color: #fff;
    }

    .page-label {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.2px;
    }

    .page-hero h1 {
      margin: 0 0 12px;
      font-size: clamp(40px, 6vw, 64px);
      line-height: 1.05;
      letter-spacing: -1.5px;
    }

    .page-hero p {
      max-width: 720px;
      margin: 0;
      font-size: 19px;
    }

    /* Innehåll */
    .content-layout {
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 45px;
      padding: 55px 0 90px;
    }

    .local-nav {
      position: sticky;
      top: 120px;
      align-self: start;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    }

    .local-nav strong {
      display: block;
      margin-bottom: 10px;
    }

    .local-nav a {
      display: block;
      padding: 8px 4px;
      color: #526158;
      text-decoration: none;
      font-size: 14px;
    }

    .local-nav a:hover {
      color: #285b3a;
    }

    .content-card {
      margin-bottom: 30px;
      padding: 34px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    }

    .content-card h2 {
      margin: 0 0 20px;
      font-size: 32px;
      line-height: 1.2;
    }

    .content-card h3 {
      margin: 34px 0 10px;
      padding-top: 5px;
      font-size: 23px;
      color: #315a40;
    }

    .content-card p {
      margin: 0 0 18px;
    }

    .content-card p:last-child {
      margin-bottom: 0;
    }

    /* Historik/Var? */
    details {
      margin: 12px 0;
      border: 1px solid #dce4de;
      border-radius: 9px;
      background: #fbfcfb;
    }

    summary {
      padding: 14px 18px;
      font-weight: 800;
      cursor: pointer;
      color: #315a40;
    }

    details p {
      padding: 0 18px 18px;
      margin: 0;
    }

    /* Dokumentmarkering */
    .pdf::after {
      content: " PDF";
      margin-left: 3px;
      font-size: .72em;
      font-weight: 800;
      color: #8a4a3d;
    }

    /* Tooltip */
    [data-tool-tip] {
      position: relative;
      border-bottom: 1px dotted #66806e;
      cursor: help;
    }

    [data-tool-tip]:hover::after {
      content: attr(data-tool-tip);
      position: absolute;
      left: 0;
      bottom: 125%;
      width: max-content;
      max-width: 260px;
      padding: 8px 10px;
      border-radius: 6px;
      background: #26332b;
      color: #fff;
      font-size: 13px;
      line-height: 1.4;
      z-index: 20;
    }

    /* Footer */
    footer {
      padding: 45px 0;
      background: #1f3326;
      color: #dbe5dd;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
    }

    footer strong {
      color: #fff;
    }

    footer p {
      margin: 3px 0;
    }

    footer a {
      color: #fff;
    }

    #toTop {
      display: none;
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 50px;
      height: 50px;
      border: 0;
      border-radius: 50%;
      background: #356347;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
      z-index: 700;
    }

    @media (max-width: 900px) {
      .content-layout {
        grid-template-columns: 1fr;
      }

      .local-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 12px;
      }

      .local-nav strong {
        width: 100%;
      }
    }

    @media (max-width: 850px) {
      .header-inner {
        min-height: 75px;
      }

      .brand-name {
        font-size: 20px;
      }

      .brand-subtitle {
        display: none;
      }

      .menu-button {
        display: block;
        z-index: 1100;
      }

      nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        padding: 100px 25px 30px;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .2);
        transition: right .3s;
        z-index: 900;
      }

      nav.open {
        right: 0;
      }

      nav ul {
        display: block;
      }

      nav li {
        border-bottom: 1px solid #e3e6e3;
      }

      nav a {
        padding: 17px 10px;
        border-radius: 0;
        font-size: 16px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 30px, 1100px);
      }

      .page-hero {
        padding: 55px 0;
      }

      .page-hero h1 {
        font-size: 40px;
      }

      .content-layout {
        padding-top: 30px;
        gap: 25px;
      }

      .content-card {
        padding: 24px;
      }

      .content-card h2 {
        font-size: 28px;
      }
    }

.overlay.show{display:block}#toTop.show{display:block}

* {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Nunito, Arial, sans-serif;
            background: #f5f7f5;
            color: #26332b;
            line-height: 1.7;
        }

        a {
            color: #356347;
        }

        a:hover {
            color: #274c35;
        }

        .container {
            width: min(1100px, calc(100% - 40px));
            margin: auto;
        }


        /* HEADER */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .96);
            border-bottom: 1px solid #e2e5e2;
            transition: box-shadow .25s;
        }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
        }

        .header-inner {
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .brand {
            text-decoration: none;
            color: #26332b;
            flex-shrink: 0;
        }

        .brand-name {
            display: block;
            font-size: 25px;
            font-weight: 800;
            line-height: 1.1;
        }

        .brand-subtitle {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            font-weight: 600;
            color: #66806e;
        }


        /* MENY */

        nav ul {
            display: flex;
            align-items: center;
            gap: 3px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        nav a {
            display: block;
            padding: 12px 10px;
            border-radius: 7px;
            color: #26332b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        nav a:hover {
            background: #e8f0ea;
            color: #285b3a;
        }

        .menu-button {
            display: none;
            border: 0;
            background: transparent;
            font-size: 32px;
            color: #26332b;
            cursor: pointer;
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            z-index: 800;
        }


        /* HERO */

        .page-hero {
            padding: 70px 0 60px;

            background:
                linear-gradient(90deg,
                    rgba(19, 42, 28, .92),
                    rgba(19, 42, 28, .65)),
                url("/img/gunnesbo.jpg") center/cover;

            color: #fff;
        }

        .page-label {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.2px;
        }

        .page-hero h1 {
            margin: 8px 0 12px;
            font-size: clamp(40px, 6vw, 64px);
            line-height: 1.05;
        }

        .page-hero p {
            max-width: 720px;
            margin: 0;
            font-size: 19px;
        }


        /* HISTORIK */

        .history-wrapper {
            padding: 55px 0 90px;
        }

        .history-card {
            width: min(850px, 100%);
            margin: auto;
            padding: 35px 40px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
        }

        .history-card h2 {
            margin: 0 0 8px;
            font-size: 30px;
        }

        .history-intro {
            margin: 0 0 30px;
            color: #617067;
        }


        /* ENSKILD ÄNDRING */

        .change {
            display: grid;
            grid-template-columns: 125px minmax(0, 1fr);
            gap: 25px;

            padding: 22px 0;

            border-bottom: 1px solid #e1e5e2;
        }

        .change:first-child {
            padding-top: 5px;
        }

        .change:last-child {
            border-bottom: 0;
        }

        .change-date {
            color: #6b756e;
            font-size: 14px;
            font-weight: 700;
        }

        .change-content strong {
            display: block;
            margin-bottom: 4px;
            font-size: 18px;
        }

        .change-page {
            color: #6b756e;
            font-size: 14px;
        }


        /* STATUS */

        #loading,
        #error,
        #empty {
            padding: 25px 0;
            color: #617067;
        }

        #error {
            color: #8b3232;
        }


        /* TILLBAKA */

        .back-link {
            width: min(850px, 100%);
            margin: 25px auto 0;
        }

        .back-link a {
            font-weight: 700;
            text-decoration: none;
        }


        /* FOOTER */

        footer {
            padding: 45px 0;
            background: #1f3326;
            color: #dbe5dd;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        footer strong {
            color: #fff;
        }

        footer p {
            margin: 3px 0;
        }


        /* TILL TOPPEN */

        #toTop {
            display: none;
            position: fixed;
            right: 25px;
            bottom: 25px;

            width: 50px;
            height: 50px;

            border: 0;
            border-radius: 50%;

            background: #356347;
            color: #fff;

            font-size: 24px;
            cursor: pointer;

            box-shadow: 0 4px 15px rgba(0, 0, 0, .2);

            z-index: 700;
        }


        /* RESPONSIVT */

        @media (max-width:1000px) {

            nav a {
                padding-left: 7px;
                padding-right: 7px;
                font-size: 13px;
            }
        }


        @media (max-width:850px) {

            .header-inner {
                min-height: 75px;
            }

            .brand-name {
                font-size: 20px;
            }

            .brand-subtitle {
                display: none;
            }

            .menu-button {
                display: block;
                z-index: 1100;
            }

            nav {
                position: fixed;
                top: 0;
                right: -320px;

                width: 300px;
                height: 100vh;

                padding: 100px 25px 30px;

                background: #fff;

                box-shadow: -5px 0 25px rgba(0, 0, 0, .2);

                transition: right .3s;

                z-index: 900;
            }

            nav.open {
                right: 0;
            }

            nav ul {
                display: block;
            }

            nav li {
                border-bottom: 1px solid #e3e6e3;
            }

            nav a {
                padding: 17px 10px;
                border-radius: 0;
                font-size: 16px;
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }


        @media (max-width:600px) {

            .history-card {
                padding: 25px;
            }

            .change {
                grid-template-columns: 1fr;
                gap: 3px;
            }

            .change-date {
                order: 2;
            }

            .change-content {
                order: 1;
            }
        }


        @media (max-width:520px) {

            .container {
                width: min(100% - 30px, 1100px);
            }

            .page-hero {
                padding: 55px 0;
            }

            .page-hero h1 {
                font-size: 40px;
            }

            .history-wrapper {
                padding: 30px 0 60px;
            }
        }

* {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: Nunito, Arial, sans-serif;
      background: #f5f7f5;
      color: #26332b;
      line-height: 1.65
    }

    a {
      color: #356347
    }

    .container {
      width: min(1100px, calc(100% - 40px));
      margin: auto
    }

    .skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      padding: 10px 20px;
      background: #fff;
      z-index: 5000
    }

    .skip-link:focus {
      top: 20px
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid #e2e5e2;
      transition: box-shadow .25s
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12)
    }

    .header-inner {
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px
    }

    .brand {
      text-decoration: none;
      color: #26332b
    }

    .brand-name {
      display: block;
      font-size: 25px;
      font-weight: 800;
      line-height: 1.1
    }

    .brand-subtitle {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      font-weight: 600;
      color: #66806e
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none
    }

    nav a {
      display: block;
      padding: 12px 15px;
      border-radius: 7px;
      color: #26332b;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700
    }

    nav a:hover,
    nav a.active {
      background: #e8f0ea;
      color: #285b3a
    }

    .menu-button {
      display: none;
      border: 0;
      background: transparent;
      font-size: 32px;
      color: #26332b;
      cursor: pointer
    }

    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 800
    }

    .page-hero {
      padding: 75px 0 65px;
      background: linear-gradient(90deg, rgba(19, 42, 28, .92), rgba(19, 42, 28, .68)), url("/img/boplb.jpg") center/cover;
      color: #fff
    }

    .page-label {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.2px
    }

    .page-hero h1 {
      margin: 8px 0 12px;
      font-size: clamp(40px, 6vw, 64px);
      line-height: 1.05
    }

    .page-hero p {
      max-width: 700px;
      margin: 0;
      font-size: 19px
    }

    .content-layout {
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 45px;
      padding: 55px 0 90px
    }

    .local-nav {
      position: sticky;
      top: 120px;
      align-self: start;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06)
    }

    .local-nav strong {
      display: block;
      margin-bottom: 10px
    }

    .local-nav a {
      display: block;
      padding: 8px 4px;
      color: #526158;
      text-decoration: none;
      font-size: 14px
    }

    .content-card {
      margin-bottom: 30px;
      padding: 34px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06)
    }

    .content-card h2 {
      margin: 0 0 25px;
      font-size: 32px
    }

    .content-card h3 {
      margin: 35px 0 15px;
      color: #315a40
    }

    .people-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px
    }

    .person {
      padding: 19px;
      border: 1px solid #e0e6e1;
      border-radius: 10px;
      background: #fbfcfb
    }

    .role {
      margin: 0 0 5px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .5px;
      color: #66806e
    }

    .name {
      margin: 0;
      font-size: 18px;
      font-weight: 800
    }

    .address {
      margin: 4px 0 0;
      color: #68756d;
      font-size: 14px
    }

    .phone {
      display: inline-block;
      margin-left: 6px;
      cursor: pointer;
      color: #356347;
      font-size: 15px
    }

    .phone:hover {
      text-decoration: underline
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px
    }

    .contact-item {
      padding: 18px;
      background: #eef3ef;
      border-radius: 9px
    }

    .contact-item strong {
      display: block;
      margin-bottom: 3px;
      color: #315a40
    }

    .contact-item p {
      margin: 0
    }

    .wide {
      grid-column: 1/-1
    }

    .swish-link {
      display: inline-block;
      margin-left: 8px
    }

    .note {
      margin-top: 22px;
      padding: 17px 20px;
      border-left: 4px solid #66806e;
      background: #f1f5f2;
      border-radius: 0 8px 8px 0
    }

    footer {
      padding: 45px 0;
      background: #1f3326;
      color: #dbe5dd
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px
    }

    footer strong {
      color: #fff
    }

    footer p {
      margin: 3px 0
    }

    #toTop {
      display: none;
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 50px;
      height: 50px;
      border: 0;
      border-radius: 50%;
      background: #356347;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
      z-index: 700
    }

    @media(max-width:900px) {
      .content-layout {
        grid-template-columns: 1fr
      }

      .local-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 12px
      }

      .local-nav strong {
        width: 100%
      }
    }

    @media(max-width:850px) {
      .header-inner {
        min-height: 75px
      }

      .brand-name {
        font-size: 20px
      }

      .brand-subtitle {
        display: none
      }

      .menu-button {
        display: block;
        z-index: 1100
      }

      nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        padding: 100px 25px 30px;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .2);
        transition: right .3s;
        z-index: 900
      }

      nav.open {
        right: 0
      }

      nav ul {
        display: block
      }

      nav li {
        border-bottom: 1px solid #e3e6e3
      }

      nav a {
        padding: 17px 10px;
        border-radius: 0;
        font-size: 16px
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start
      }
    }

    @media(max-width:600px) {

      .people-grid,
      .contact-grid {
        grid-template-columns: 1fr
      }

      .wide {
        grid-column: auto
      }
    }

    @media(max-width:520px) {
      .container {
        width: min(100% - 30px, 1100px)
      }

      .page-hero {
        padding: 55px 0
      }

      .page-hero h1 {
        font-size: 40px
      }

      .content-layout {
        padding-top: 30px;
        gap: 25px
      }

      .content-card {
        padding: 24px
      }
    }

* {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Nunito, Arial, sans-serif;
      background: #f5f7f5;
      color: #26332b;
      line-height: 1.7;
    }

    a {
      color: #356347;
    }

    a:hover {
      color: #274c35;
    }

    .container {
      width: min(1100px, calc(100% - 40px));
      margin: auto;
    }

    .skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      padding: 10px 20px;
      background: #fff;
      z-index: 5000;
    }

    .skip-link:focus {
      top: 20px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid #e2e5e2;
      transition: box-shadow .25s ease;
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
    }

    .header-inner {
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      text-decoration: none;
      color: #26332b;
    }

    .brand-name {
      display: block;
      font-size: 25px;
      font-weight: 800;
      line-height: 1.1;
    }

    .brand-subtitle {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      font-weight: 600;
      color: #66806e;
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    nav a {
      display: block;
      padding: 12px 15px;
      border-radius: 7px;
      color: #26332b;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
    }

    nav a:hover,
    nav a.active {
      background: #e8f0ea;
      color: #285b3a;
    }

    .menu-button {
      display: none;
      border: 0;
      background: transparent;
      font-size: 32px;
      color: #26332b;
      cursor: pointer;
    }

    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 800;
    }

    .page-hero {
      padding: 75px 0 65px;
      background: linear-gradient(90deg, rgba(19, 42, 28, .92), rgba(19, 42, 28, .68)), url("/img/bopla.jpg") center/cover;
      color: #fff;
    }

    .page-label {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.2px;
    }

    .page-hero h1 {
      margin: 0 0 12px;
      font-size: clamp(40px, 6vw, 64px);
      line-height: 1.05;
      letter-spacing: -1.5px;
    }

    .page-hero p {
      max-width: 720px;
      margin: 0;
      font-size: 19px;
    }

    .content-layout {
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 45px;
      padding: 55px 0 90px;
    }

    .local-nav {
      position: sticky;
      top: 120px;
      align-self: start;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    }

    .local-nav strong {
      display: block;
      margin-bottom: 10px;
    }

    .local-nav a {
      display: block;
      padding: 8px 4px;
      color: #526158;
      text-decoration: none;
      font-size: 14px;
    }

    .content-card {
      margin-bottom: 30px;
      padding: 34px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    }

    .content-card h2 {
      margin: 0 0 15px;
      font-size: 32px;
      line-height: 1.2;
    }

    .content-card h3,
    .content-card h4 {
      color: #315a40;
    }

    .content-card h4 {
      margin: 28px 0 6px;
      font-size: 19px;
    }

    .content-card>p {
      margin-top: 0;
    }

    details {
      margin: 14px 0;
      border: 1px solid #dce4de;
      border-radius: 9px;
      background: #fbfcfb;
      overflow: hidden;
    }

    summary {
      padding: 16px 18px;
      font-weight: 800;
      cursor: pointer;
      color: #315a40;
      background: #f8faf8;
    }

    details[open] summary {
      border-bottom: 1px solid #e3e8e4;
    }

    .detail-body {
      padding: 18px;
    }

    details>p,
    details>form,
    details>div:not([id^="budget"]) {
      margin-left: 18px;
      margin-right: 18px;
    }

    details>p:first-of-type {
      margin-top: 18px;
    }

    details>p:last-child {
      margin-bottom: 18px;
    }

    form {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      margin: 18px;
    }

    select {
      min-width: 220px;
      max-width: 100%;
      padding: 11px 38px 11px 12px;
      border: 1px solid #bdc8c0;
      border-radius: 7px;
      background: #fff;
      color: #26332b;
      font: inherit;
    }

    .button {
      display: inline-block;
      padding: 11px 20px;
      border: 0;
      border-radius: 7px;
      background: #356347;
      color: #fff;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
    }

    .button:hover {
      background: #274c35;
    }

    #budgetbar,
    #budgetpie,
    #budgetcompare {
      max-width: 100%;
      overflow: hidden;
      margin: 15px 0;
    }

    .pdf::after {
      content: " PDF";
      margin-left: 3px;
      font-size: .72em;
      font-weight: 800;
      color: #8a4a3d;
    }

    footer {
      padding: 45px 0;
      background: #1f3326;
      color: #dbe5dd;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
    }

    footer strong {
      color: #fff;
    }

    footer p {
      margin: 3px 0;
    }

    #toTop {
      display: none;
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 50px;
      height: 50px;
      border: 0;
      border-radius: 50%;
      background: #356347;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
      z-index: 700;
    }

    @media(max-width:900px) {
      .content-layout {
        grid-template-columns: 1fr;
      }

      .local-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 12px;
      }

      .local-nav strong {
        width: 100%;
      }
    }

    @media(max-width:850px) {
      .header-inner {
        min-height: 75px;
      }

      .brand-name {
        font-size: 20px;
      }

      .brand-subtitle {
        display: none;
      }

      .menu-button {
        display: block;
        z-index: 1100;
      }

      nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        padding: 100px 25px 30px;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .2);
        transition: right .3s;
        z-index: 900;
      }

      nav.open {
        right: 0;
      }

      nav ul {
        display: block;
      }

      nav li {
        border-bottom: 1px solid #e3e6e3;
      }

      nav a {
        padding: 17px 10px;
        border-radius: 0;
        font-size: 16px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media(max-width:520px) {
      .container {
        width: min(100% - 30px, 1100px);
      }

      .page-hero {
        padding: 55px 0;
      }

      .page-hero h1 {
        font-size: 40px;
      }

      .content-layout {
        padding-top: 30px;
        gap: 25px;
      }

      .content-card {
        padding: 24px;
      }

      .content-card h2 {
        font-size: 28px;
      }

      form {
        margin: 16px 0;
      }

      select {
        width: 100%;
      }
    }

* {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: Nunito, Arial, sans-serif;
      background: #f5f7f5;
      color: #26332b;
      line-height: 1.7
    }

    a {
      color: #356347
    }

    a:hover {
      color: #274c35
    }

    .container {
      width: min(1100px, calc(100% - 40px));
      margin: auto
    }

    .skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      padding: 10px 20px;
      background: #fff;
      z-index: 5000
    }

    .skip-link:focus {
      top: 20px
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid #e2e5e2;
      transition: box-shadow .25s
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12)
    }

    .header-inner {
      min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px
    }

    .brand {
      text-decoration: none;
      color: #26332b
    }

    .brand-name {
      display: block;
      font-size: 25px;
      font-weight: 800;
      line-height: 1.1
    }

    .brand-subtitle {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      font-weight: 600;
      color: #66806e
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none
    }

    nav a {
      display: block;
      padding: 12px 15px;
      border-radius: 7px;
      color: #26332b;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700
    }

    nav a:hover,
    nav a.active {
      background: #e8f0ea;
      color: #285b3a
    }

    .menu-button {
      display: none;
      border: 0;
      background: transparent;
      font-size: 32px;
      color: #26332b;
      cursor: pointer
    }

    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      z-index: 800
    }

    .page-hero {
      padding: 75px 0 65px;
      background: linear-gradient(90deg, rgba(19, 42, 28, .92), rgba(19, 42, 28, .68)), url("/img/boplad.jpg") center/cover;
      color: #fff
    }

    .page-label {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.2px
    }

    .page-hero h1 {
      margin: 8px 0 12px;
      font-size: clamp(40px, 6vw, 64px);
      line-height: 1.05
    }

    .page-hero p {
      max-width: 720px;
      margin: 0;
      font-size: 19px
    }

    .content-layout {
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 45px;
      padding: 55px 0 90px
    }

    .local-nav {
      position: sticky;
      top: 120px;
      align-self: start;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06)
    }

    .local-nav strong {
      display: block;
      margin-bottom: 10px
    }

    .local-nav a {
      display: block;
      padding: 8px 4px;
      color: #526158;
      text-decoration: none;
      font-size: 14px
    }

    .content-card {
      margin-bottom: 30px;
      padding: 34px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, .06)
    }

    .content-card h2 {
      margin: 0 0 22px;
      font-size: 32px;
      line-height: 1.2
    }

    details {
      margin: 14px 0;
      border: 1px solid #dce4de;
      border-radius: 9px;
      background: #fbfcfb;
      overflow: hidden
    }

    summary {
      padding: 16px 18px;
      font-weight: 800;
      cursor: pointer;
      color: #315a40;
      background: #f8faf8
    }

    details[open] summary {
      border-bottom: 1px solid #e3e8e4
    }

    details>p,
    details>ul,
    details>div {
      margin-left: 18px;
      margin-right: 18px
    }

    details>p:first-of-type,
    details>div:first-of-type {
      margin-top: 18px
    }

    details>p:last-child,
    details>div:last-child {
      margin-bottom: 18px
    }

    details img {
      max-width: 100%;
      height: auto;
      border-radius: 8px
    }

    .b {
      font-weight: 800
    }

    .house-color {
      display: inline-block;
      width: 25px;
      height: 18px;
      vertical-align: middle;
      border: 1px solid #999;
      background: #8d4437
    }

    .calendar {
      margin: 18px !important
    }

    .calendar object {
      display: block;
      width: 100%;
      height: 500px;
      border: 0
    }

    footer {
      padding: 45px 0;
      background: #1f3326;
      color: #dbe5dd
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px
    }

    footer strong {
      color: #fff
    }

    footer p {
      margin: 3px 0
    }

    #toTop {
      display: none;
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 50px;
      height: 50px;
      border: 0;
      border-radius: 50%;
      background: #356347;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
      z-index: 700
    }

    @media(max-width:900px) {
      .content-layout {
        grid-template-columns: 1fr
      }

      .local-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px 12px
      }

      .local-nav strong {
        width: 100%
      }
    }

    @media(max-width:850px) {
      .header-inner {
        min-height: 75px
      }

      .brand-name {
        font-size: 20px
      }

      .brand-subtitle {
        display: none
      }

      .menu-button {
        display: block;
        z-index: 1100
      }

      nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        padding: 100px 25px 30px;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .2);
        transition: right .3s;
        z-index: 900
      }

      nav.open {
        right: 0
      }

      nav ul {
        display: block
      }

      nav li {
        border-bottom: 1px solid #e3e6e3
      }

      nav a {
        padding: 17px 10px;
        border-radius: 0;
        font-size: 16px
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start
      }
    }

    @media(max-width:520px) {
      .container {
        width: min(100% - 30px, 1100px)
      }

      .page-hero {
        padding: 55px 0
      }

      .page-hero h1 {
        font-size: 40px
      }

      .content-layout {
        padding-top: 30px;
        gap: 25px
      }

      .content-card {
        padding: 24px
      }

      .calendar {
        margin: 12px 0 !important
      }

      .calendar object {
        height: 450px
      }
    }

* {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;

      font-family:
        Nunito,
        Arial,
        sans-serif;

      background: #f5f7f5;
      color: #26332b;

      line-height: 1.7;
    }

    a {
      color: #356347;
    }

    a:hover {
      color: #274c35;
    }

    .container {
      width: min(1100px,
          calc(100% - 40px));

      margin: auto;
    }


    /* -------------------------------------------------
   SKIP LINK
------------------------------------------------- */

    .skip-link {
      position: absolute;

      top: -100px;
      left: 20px;

      padding: 10px 20px;

      background: #fff;

      z-index: 5000;
    }

    .skip-link:focus {
      top: 20px;
    }


    /* -------------------------------------------------
   HEADER
------------------------------------------------- */

    header {
      position: sticky;

      top: 0;

      z-index: 1000;

      background:
        rgba(255, 255, 255, .96);

      border-bottom:
        1px solid #e2e5e2;

      transition:
        box-shadow .25s;
    }

    header.scrolled {
      box-shadow:
        0 4px 20px rgba(0, 0, 0, .12);
    }

    .header-inner {
      min-height: 90px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      gap: 30px;
    }

    .brand {
      text-decoration: none;
      color: #26332b;
    }

    .brand-name {
      display: block;

      font-size: 25px;
      font-weight: 800;

      line-height: 1.1;
    }

    .brand-subtitle {
      display: block;

      margin-top: 4px;

      font-size: 13px;
      font-weight: 600;

      color: #66806e;
    }


    /* -------------------------------------------------
   NAVIGATION
------------------------------------------------- */

    nav ul {
      display: flex;
      align-items: center;

      gap: 6px;

      margin: 0;
      padding: 0;

      list-style: none;
    }

    nav a {
      display: block;

      padding: 12px 15px;

      border-radius: 7px;

      color: #26332b;

      text-decoration: none;

      font-size: 14px;
      font-weight: 700;
    }

    nav a:hover,
    nav a.active {
      background: #e8f0ea;
      color: #285b3a;
    }

    .menu-button {
      display: none;

      border: 0;

      background: transparent;

      font-size: 32px;

      color: #26332b;

      cursor: pointer;
    }

    .overlay {
      display: none;

      position: fixed;

      inset: 0;

      background:
        rgba(0, 0, 0, .45);

      z-index: 800;
    }


    /* -------------------------------------------------
   HERO
------------------------------------------------- */

    .page-hero {
      padding:
        75px 0 65px;

      background:
        linear-gradient(90deg,
          rgba(19, 42, 28, .92),
          rgba(19, 42, 28, .62)),
        url("/img/4h.jpg") center / cover;

      color: #fff;
    }

    .page-label {
      font-size: 13px;
      font-weight: 800;

      letter-spacing: 1.2px;
    }

    .page-hero h1 {
      margin:
        8px 0 12px;

      font-size:
        clamp(40px,
          6vw,
          64px);

      line-height: 1.05;
    }

    .page-hero p {
      max-width: 720px;

      margin: 0;

      font-size: 19px;
    }


    /* -------------------------------------------------
   SIDANS LAYOUT
------------------------------------------------- */

    .content-layout {
      display: grid;

      grid-template-columns:
        230px minmax(0, 1fr);

      gap: 45px;

      padding:
        55px 0 90px;
    }


    /* -------------------------------------------------
   LOKAL NAVIGATION
------------------------------------------------- */

    .local-nav {
      position: sticky;

      top: 120px;

      align-self: start;

      padding: 20px;

      background: #fff;

      border-radius: 12px;

      box-shadow:
        0 5px 20px rgba(0, 0, 0, .06);
    }

    .local-nav strong {
      display: block;

      margin-bottom: 10px;
    }

    .local-nav a {
      display: block;

      padding: 8px 4px;

      color: #526158;

      text-decoration: none;

      font-size: 14px;
    }


    /* -------------------------------------------------
   INNEHÅLLSKORT
------------------------------------------------- */

    .content-card {
      margin-bottom: 30px;

      padding: 34px;

      background: #fff;

      border-radius: 14px;

      box-shadow:
        0 5px 20px rgba(0, 0, 0, .06);
    }

    .content-card h2 {
      margin:
        0 0 20px;

      font-size: 32px;

      line-height: 1.2;
    }

    .content-card>div>img {
      display: block;

      width: 100%;

      max-height: 420px;

      object-fit: cover;

      border-radius: 10px;

      margin:
        0 0 22px;
    }

    .content-card img.size-50 {
      width:
        min(50%,
          420px);

      height: auto;

      object-fit: contain;

      margin-left: auto;
      margin-right: auto;
    }


    /* -------------------------------------------------
   DETAILS
------------------------------------------------- */

    details {
      margin: 14px 0;

      border:
        1px solid #dce4de;

      border-radius: 9px;

      background: #fbfcfb;

      overflow: hidden;
    }

    summary {
      padding:
        16px 18px;

      font-weight: 800;

      cursor: pointer;

      color: #315a40;

      background: #f8faf8;
    }

    details[open] summary {
      border-bottom:
        1px solid #e3e8e4;
    }

    details>p,
    details>div {
      margin-left: 18px;
      margin-right: 18px;
    }

    details>p:first-of-type {
      margin-top: 18px;
    }

    details>p:last-child {
      margin-bottom: 18px;
    }


    /* -------------------------------------------------
   EXTERNA LÄNKAR
------------------------------------------------- */

    .external-link::after {
      content: " ↗";

      font-size: .8em;

      text-decoration: none;
    }


    /* -------------------------------------------------
   ARTPORTALEN
------------------------------------------------- */

    #spin.loader {
      display: inline-block;

      width: 20px;
      height: 20px;

      border:
        3px solid #d7dfd9;

      border-top-color:
        #356347;

      border-radius: 50%;

      animation:
        spin .8s linear infinite;

      vertical-align: middle;
    }

    @keyframes spin {

      to {
        transform:
          rotate(360deg);
      }
    }

    #feedback,
    #oldObservations,
    #header_feedback,
    #yesterday,
    #oldObservationsHeader {
      max-width: 100%;
    }


    /* -------------------------------------------------
   FOOTER
------------------------------------------------- */

    footer {
      padding:
        45px 0;

      background:
        #1f3326;

      color:
        #dbe5dd;
    }

    .footer-inner {
      display: flex;

      justify-content:
        space-between;

      align-items: center;

      gap: 30px;
    }

    footer strong {
      color: #fff;
    }

    footer p {
      margin:
        3px 0;
    }


    /* -------------------------------------------------
   TILL TOPPEN
------------------------------------------------- */

    #toTop {
      display: none;

      position: fixed;

      right: 25px;
      bottom: 25px;

      width: 50px;
      height: 50px;

      border: 0;

      border-radius: 50%;

      background: #356347;
      color: #fff;

      font-size: 24px;

      cursor: pointer;

      box-shadow:
        0 4px 15px rgba(0, 0, 0, .2);

      z-index: 700;
    }


    /* -------------------------------------------------
   RESPONSIVT
------------------------------------------------- */

    @media (max-width: 900px) {

      .content-layout {
        grid-template-columns:
          1fr;
      }

      .local-nav {
        position: static;

        display: flex;

        flex-wrap: wrap;

        gap:
          4px 12px;
      }

      .local-nav strong {
        width: 100%;
      }
    }


    @media (max-width: 850px) {

      .header-inner {
        min-height: 75px;
      }

      .brand-name {
        font-size: 20px;
      }

      .brand-subtitle {
        display: none;
      }

      .menu-button {
        display: block;

        z-index: 1100;
      }

      nav {
        position: fixed;

        top: 0;
        right: -320px;

        width: 300px;
        height: 100vh;

        padding:
          100px 25px 30px;

        background: #fff;

        box-shadow:
          -5px 0 25px rgba(0, 0, 0, .2);

        transition:
          right .3s;

        z-index: 900;
      }

      nav.open {
        right: 0;
      }

      nav ul {
        display: block;
      }

      nav li {
        border-bottom:
          1px solid #e3e6e3;
      }

      nav a {
        padding:
          17px 10px;

        border-radius: 0;

        font-size: 16px;
      }

      .footer-inner {
        flex-direction: column;

        align-items: flex-start;
      }
    }


    @media (max-width: 520px) {

      .container {
        width:
          min(100% - 30px,
            1100px);
      }

      .page-hero {
        padding:
          55px 0;
      }

      .page-hero h1 {
        font-size: 40px;
      }

      .content-layout {
        padding-top: 30px;

        gap: 25px;
      }

      .content-card {
        padding: 24px;
      }

      .content-card img.size-50 {
        width: 100%;
      }
    }

* {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Nunito, Arial, sans-serif;
            background: #f5f7f5;
            color: #26332b;
            line-height: 1.7;
        }

        a {
            color: #356347;
        }

        a:hover {
            color: #274c35;
        }

        .container {
            width: min(1100px, calc(100% - 40px));
            margin: auto;
        }


        /* -----------------------------------------
   SKIP LINK
----------------------------------------- */

        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            padding: 10px 20px;
            background: #fff;
            z-index: 5000;
        }

        .skip-link:focus {
            top: 20px;
        }


        /* -----------------------------------------
   HEADER
----------------------------------------- */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .96);
            border-bottom: 1px solid #e2e5e2;
            transition: box-shadow .25s;
        }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
        }

        .header-inner {
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .brand {
            text-decoration: none;
            color: #26332b;
            flex-shrink: 0;
        }

        .brand-name {
            display: block;
            font-size: 25px;
            font-weight: 800;
            line-height: 1.1;
        }

        .brand-subtitle {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            font-weight: 600;
            color: #66806e;
        }


        /* -----------------------------------------
   NAVIGATION
----------------------------------------- */

        nav ul {
            display: flex;
            align-items: center;
            gap: 3px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        nav a {
            display: block;
            padding: 12px 10px;
            border-radius: 7px;
            color: #26332b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        nav a:hover,
        nav a.active {
            background: #e8f0ea;
            color: #285b3a;
        }

        .menu-button {
            display: none;
            border: 0;
            background: transparent;
            font-size: 32px;
            color: #26332b;
            cursor: pointer;
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            z-index: 800;
        }


        /* -----------------------------------------
   HERO
----------------------------------------- */

        .page-hero {
            padding: 70px 0 60px;

            background:
                linear-gradient(90deg,
                    rgba(19, 42, 28, .94),
                    rgba(19, 42, 28, .70));

            color: #fff;
        }

        .page-label {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.2px;
        }

        .page-hero h1 {
            margin: 8px 0 12px;
            font-size: clamp(40px, 6vw, 64px);
            line-height: 1.05;
        }

        .page-hero p {
            max-width: 720px;
            margin: 0;
            font-size: 19px;
        }


        /* -----------------------------------------
   SIDANS LAYOUT
----------------------------------------- */

        .content-layout {
            display: grid;
            grid-template-columns: 230px minmax(0, 1fr);
            gap: 45px;
            padding: 55px 0 90px;
        }


        /* -----------------------------------------
   LOKAL NAVIGATION
----------------------------------------- */

        .local-nav {
            position: sticky;
            top: 120px;
            align-self: start;
            padding: 20px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
        }

        .local-nav strong {
            display: block;
            margin-bottom: 10px;
        }

        .local-nav a {
            display: block;
            padding: 8px 4px;
            color: #526158;
            text-decoration: none;
            font-size: 14px;
        }


        /* -----------------------------------------
   INNEHÅLL
----------------------------------------- */

        .content-card {
            margin-bottom: 30px;
            padding: 34px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
        }

        .content-card h2 {
            margin: 0 0 20px;
            font-size: 32px;
            line-height: 1.2;
        }

        .content-card h3 {
            margin: 30px 0 10px;
            color: #315a40;
            font-size: 22px;
        }

        .content-card p:first-child {
            margin-top: 0;
        }


        /* -----------------------------------------
   INTRO
----------------------------------------- */

        .intro {
            font-size: 18px;
        }


        /* -----------------------------------------
   FAKTARUTA
----------------------------------------- */

        .fact-box {
            margin: 28px 0;
            padding: 22px 25px;
            background: #eef4ef;
            border-left: 5px solid #356347;
            border-radius: 8px;
        }

        .fact-box p {
            margin: 5px 0;
        }


        /* -----------------------------------------
   KNAPPAR
----------------------------------------- */

        .page-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .tool-button {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 16px;
            border: 0;
            border-radius: 7px;
            background: #356347;
            color: #fff;
            font: inherit;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
        }

        .tool-button:hover {
            background: #274c35;
            color: #fff;
        }


        /* -----------------------------------------
   VÄLKOMMEN
----------------------------------------- */

        .welcome {
            margin-top: 35px;
            padding: 25px;
            text-align: center;
            background: #eef4ef;
            border-radius: 10px;
        }

        .welcome h3 {
            margin: 0;
            font-size: 27px;
        }


        /* -----------------------------------------
   FOOTER
----------------------------------------- */

        footer {
            padding: 45px 0;
            background: #1f3326;
            color: #dbe5dd;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        footer strong {
            color: #fff;
        }

        footer p {
            margin: 3px 0;
        }


        /* -----------------------------------------
   TILL TOPPEN
----------------------------------------- */

        #toTop {
            display: none;
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 50px;
            height: 50px;
            border: 0;
            border-radius: 50%;
            background: #356347;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
            z-index: 700;
        }


        /* -----------------------------------------
   RESPONSIVT
----------------------------------------- */

        @media (max-width: 1000px) {

            nav a {
                padding-left: 7px;
                padding-right: 7px;
                font-size: 13px;
            }
        }


        @media (max-width: 900px) {

            .content-layout {
                grid-template-columns: 1fr;
            }

            .local-nav {
                position: static;
                display: flex;
                flex-wrap: wrap;
                gap: 4px 12px;
            }

            .local-nav strong {
                width: 100%;
            }
        }


        @media (max-width: 850px) {

            .header-inner {
                min-height: 75px;
            }

            .brand-name {
                font-size: 20px;
            }

            .brand-subtitle {
                display: none;
            }

            .menu-button {
                display: block;
                z-index: 1100;
            }

            nav {
                position: fixed;
                top: 0;
                right: -320px;
                width: 300px;
                height: 100vh;
                padding: 100px 25px 30px;
                background: #fff;
                box-shadow: -5px 0 25px rgba(0, 0, 0, .2);
                transition: right .3s;
                z-index: 900;
            }

            nav.open {
                right: 0;
            }

            nav ul {
                display: block;
            }

            nav li {
                border-bottom: 1px solid #e3e6e3;
            }

            nav a {
                padding: 17px 10px;
                border-radius: 0;
                font-size: 16px;
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }


        @media (max-width: 520px) {

            .container {
                width: min(100% - 30px, 1100px);
            }

            .page-hero {
                padding: 55px 0;
            }

            .page-hero h1 {
                font-size: 40px;
            }

            .content-layout {
                padding-top: 30px;
                gap: 25px;
            }

            .content-card {
                padding: 24px;
            }

            .page-tools {
                flex-direction: column;
            }

            .tool-button {
                justify-content: center;
            }
        }


        /* -----------------------------------------
   UTSKRIFT
----------------------------------------- */

        @media print {

            header,
            .page-hero,
            .local-nav,
            .page-tools,
            footer,
            #toTop,
            .overlay {
                display: none !important;
            }

            body {
                background: #fff;
                color: #000;
            }

            .container {
                width: 100%;
            }

            .content-layout {
                display: block;
                padding: 0;
            }

            .content-card {
                padding: 0;
                box-shadow: none;
            }

            a {
                color: #000;
                text-decoration: none;
            }
        }

        /* VANILLA JS */
        .overlay.show {
            display: block;
        }

        #toTop {
            display: block;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .2s ease, visibility .2s ease;
        }

        #toTop.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

* {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Nunito, Arial, sans-serif;
            background: #f5f7f5;
            color: #26332b;
            line-height: 1.7;
        }

        a {
            color: #356347;
        }

        a:hover {
            color: #274c35;
        }

        .container {
            width: min(1100px, calc(100% - 40px));
            margin: auto;
        }


        /* SKIP LINK */

        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            padding: 10px 20px;
            background: #fff;
            z-index: 5000;
        }

        .skip-link:focus {
            top: 20px;
        }


        /* HEADER */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .96);
            border-bottom: 1px solid #e2e5e2;
            transition: box-shadow .25s;
        }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
        }

        .header-inner {
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

        .brand {
            text-decoration: none;
            color: #26332b;
            flex-shrink: 0;
        }

        .brand-name {
            display: block;
            font-size: 25px;
            font-weight: 800;
            line-height: 1.1;
        }

        .brand-subtitle {
            display: block;
            margin-top: 4px;
            font-size: 13px;
            font-weight: 600;
            color: #66806e;
        }


        /* HUVUDMENY */

        nav ul {
            display: flex;
            align-items: center;
            gap: 3px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        nav a {
            display: block;
            padding: 12px 10px;
            border-radius: 7px;
            color: #26332b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        nav a:hover,
        nav a.active {
            background: #e8f0ea;
            color: #285b3a;
        }

        .menu-button {
            display: none;
            border: 0;
            background: transparent;
            font-size: 32px;
            color: #26332b;
            cursor: pointer;
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            z-index: 800;
        }


        /* HERO */

        .page-hero {
            padding: 70px 0 60px;

            background:
                linear-gradient(90deg,
                    rgba(19, 42, 28, .94),
                    rgba(19, 42, 28, .72));

            color: #fff;
        }

        .page-label {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.2px;
        }

        .page-hero h1 {
            margin: 8px 0 12px;
            font-size: clamp(40px, 6vw, 64px);
            line-height: 1.05;
        }

        .page-hero p {
            max-width: 700px;
            margin: 0;
            font-size: 19px;
        }


        /* NYHETER */

        .news-wrapper {
            padding: 55px 0 90px;
        }

        #newsRead {
            width: min(850px, 100%);
            margin: auto;
        }


        /*
   newsRead.js skapar innehållet dynamiskt.
   Därför stylar vi även vanliga element
   som hamnar inuti #newsRead.
*/

        #newsRead>section,
        #newsRead>article,
        #newsRead .item {
            margin-bottom: 28px;
            padding: 32px 35px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
        }

        #newsRead h1,
        #newsRead h2 {
            margin-top: 0;
            color: #26332b;
            line-height: 1.25;
        }

        #newsRead h2 {
            font-size: 29px;
        }

        #newsRead h3 {
            color: #315a40;
        }

        #newsRead p {
            margin: 12px 0;
        }

        #newsRead img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        #newsRead a {
            font-weight: 700;
        }


        /* DETAILS OM JS SKAPAR SÅDANA */

        #newsRead details {
            margin: 15px 0;
            border-top: 1px solid #e1e6e2;
        }

        #newsRead summary {
            padding: 15px 0;
            color: #315a40;
            font-weight: 700;
            cursor: pointer;
        }


        /* FOOTER */

        footer {
            padding: 45px 0;
            background: #1f3326;
            color: #dbe5dd;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        footer strong {
            color: #fff;
        }

        footer p {
            margin: 3px 0;
        }


        /* TILL TOPPEN */

        #toTop {
            display: none;
            position: fixed;
            right: 25px;
            bottom: 25px;

            width: 50px;
            height: 50px;

            border: 0;
            border-radius: 50%;

            background: #356347;
            color: #fff;

            font-size: 24px;
            cursor: pointer;

            box-shadow: 0 4px 15px rgba(0, 0, 0, .2);

            z-index: 700;
        }


        /* RESPONSIVT */

        @media (max-width:1000px) {

            nav a {
                padding-left: 7px;
                padding-right: 7px;
                font-size: 13px;
            }
        }


        @media (max-width:850px) {

            .header-inner {
                min-height: 75px;
            }

            .brand-name {
                font-size: 20px;
            }

            .brand-subtitle {
                display: none;
            }

            .menu-button {
                display: block;
                z-index: 1100;
            }

            nav {
                position: fixed;
                top: 0;
                right: -320px;

                width: 300px;
                height: 100vh;

                padding: 100px 25px 30px;

                background: #fff;

                box-shadow: -5px 0 25px rgba(0, 0, 0, .2);

                transition: right .3s;

                z-index: 900;
            }

            nav.open {
                right: 0;
            }

            nav ul {
                display: block;
            }

            nav li {
                border-bottom: 1px solid #e3e6e3;
            }

            nav a {
                padding: 17px 10px;
                border-radius: 0;
                font-size: 16px;
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }


        @media (max-width:520px) {

            .container {
                width: min(100% - 30px, 1100px);
            }

            .page-hero {
                padding: 55px 0;
            }

            .page-hero h1 {
                font-size: 40px;
            }

            .news-wrapper {
                padding: 30px 0 60px;
            }

            #newsRead>section,
            #newsRead>article,
            #newsRead .item {
                padding: 24px;
            }
        }

        /* VANILLA JS */
        .overlay.show { display: block; }

        #toTop {
            display: block;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .2s ease, visibility .2s ease;
        }

        #toTop.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

/* =========================================================
   GEMENSAMMA VANILLA-JS-TILLSTÅND OCH DIALOG
   ========================================================= */

.overlay.show {
    display: block;
}

#toTop {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

#toTop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

dialog.modal {
    width: min(520px, calc(100% - 30px));
    max-width: 520px;
    border: 0;
    border-radius: 14px;
    padding: 30px;
    background: #fff;
    color: #26332b;
    box-shadow: 0 15px 60px rgba(0, 0, 0, .3);
}

dialog.modal h2 {
    margin: 0 0 12px;
    color: #26332b;
    font-size: 28px;
    line-height: 1.25;
}

dialog.modal .message-body {
    margin: 0 0 20px;
}

dialog.modal::backdrop {
    background: rgba(0, 0, 0, .5);
}

.message-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.message-buttons .button,
.cancel-button {
    font: inherit;
    cursor: pointer;
}

.cancel-button {
    display: inline-block;
    padding: 11px 18px;
    border: 1px solid #cbd5cd;
    border-radius: 8px;
    background: #fff;
    color: #356347;
    font-weight: 700;
}

.cancel-button:hover,
.cancel-button:focus-visible {
    background: #eef4ef;
    border-color: #356347;
}

.footnote {
    margin: 18px 0 0;
    color: #66806e;
    font-size: 13px;
    line-height: 1.5;
}

/* Startsidan är bredare; undersidorna behåller sin tidigare maxbredd. */
.page-home .container {
    width: min(1200px, calc(100% - 40px));
}

.page-inner .container {
    width: min(1100px, calc(100% - 40px));
}

@media (max-width: 520px) {
    .page-home .container,
    .page-inner .container {
        width: min(100% - 30px, 1200px);
    }

    .message-buttons {
        flex-direction: column;
    }

    .message-buttons .button,
    .cancel-button {
        width: 100%;
        text-align: center;
    }
}


/* HITTA SNABBT */
#mainNav .quicklinks { position: relative; }

#mainNav .find {
    display: block;
    padding: 12px 15px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #26332b;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
#mainNav .find:hover,
#mainNav .find[aria-expanded="true"] {
    background: #e8f0ea;
    color: #285b3a;
}
#mainNav .angleDown {
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
    transition: transform .2s ease;
}
#mainNav .find[aria-expanded="true"] .angleDown {
    transform: rotate(90deg);
}
#mainNav .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 250px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e2e5e2;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
    z-index: 1300;
}
#mainNav .dropdown-content[hidden] { display: none; }
#mainNav .dropdown-content a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}
#mainNav .dropdown-content a:hover,
#mainNav .dropdown-content a:focus-visible {
    background: #e8f0ea;
}

@media (max-width:850px) {
    #mainNav .quicklinks { position: static; }
    #mainNav .find {
        width: 100%;
        padding: 17px 10px;
        border-radius: 0;
        text-align: left;
        font-size: 16px;
    }
    #mainNav .dropdown-content {
        position: static;
        width: 100%;
        padding: 0 0 8px 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #f5f7f5;
    }
    #mainNav .dropdown-content a {
        padding: 11px 12px;
        font-size: 14px;
    }
}


/* STARTSIDAN – tydligare knapp-hover */
.page-home .button {
    transition: background-color .18s ease, color .18s ease,
                transform .18s ease, box-shadow .18s ease;
}

.page-home .button:hover,
.page-home .button:focus-visible {
    background: #a5442d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(31, 51, 38, .18);
}

.page-home .button-light:hover,
.page-home .button-light:focus-visible {
    background: #a5442d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(31, 51, 38, .18);
}

.page-home .button:active {
    transform: translateY(0);
    box-shadow: none;
}
