      :root {
        --gradient-card: linear-gradient(135deg, #F0E4D9, #E8D3C1);
        --gradient-bubble: linear-gradient(to bottom right, #F8F1E9, #EDF3E8);
        --bubble-bg: #F5F8F2; /* ljus salvia-beige för bubblor */
        /* Gemensamt textindrag för alla modaler (överskrids till 20px på mobil) */
        --modal-gutter: 48px;
        /* Gemensam textkolumnbredd så texten börjar på samma avstånd i alla modaler */
        --modal-text-width: 880px;
      }

      :root {
        --anim-fast: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --anim-med: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --anim-slow: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --clip-organic: polygon(0 4%, 96% 0, 100% 96%, 4% 100%);
        --clip-circle: circle(50% at 50% 50%);
        --img-placeholder-bg: linear-gradient(135deg, #E8D3C1 0%, #D9E0D5 100%);
      }

      .anim-fade-up {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity var(--anim-med), transform var(--anim-med);
        will-change: opacity, transform;
      }
      .anim-fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .anim-fade-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity var(--anim-med), transform var(--anim-med);
        will-change: opacity, transform;
      }
      .anim-fade-left.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .anim-fade-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity var(--anim-med), transform var(--anim-med);
        will-change: opacity, transform;
      }
      .anim-fade-right.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .anim-scale-in {
        opacity: 0;
        transform: scale(0.88);
        transition: opacity var(--anim-slow), transform var(--anim-slow);
        will-change: opacity, transform;
      }
      .anim-scale-in.visible {
        opacity: 1;
        transform: scale(1);
      }
      .anim-stagger > * {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity var(--anim-med), transform var(--anim-med);
        will-change: opacity, transform;
      }
      .anim-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
      .anim-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
      .anim-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
      .anim-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
      .anim-stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
      .anim-stagger.visible > * {
        opacity: 1;
        transform: translateY(0);
      }

      .accordion-toggle {
        cursor: pointer;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .accordion-toggle::after {
        content: "+";
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--accent-clr, var(--accent));
        transition: transform var(--anim-fast);
        line-height: 1;
      }
      .accordion-toggle.open::after {
        transform: rotate(45deg);
      }
      .accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-med), opacity var(--anim-med);
        opacity: 0;
      }
      .accordion-body.open {
        max-height: 800px;
        opacity: 1;
      }

      .img-placeholder {
        background: var(--img-placeholder-bg);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-body);
        font-size: 0.85rem;
        font-family: Manrope, sans-serif;
        position: relative;
        overflow: hidden;
      }
      .img-placeholder::before {
        content: attr(data-label);
        opacity: 0.5;
        text-align: center;
        padding: 12px;
      }
      .img-placeholder::after {
        content: "📷";
        position: absolute;
        bottom: 10px;
        right: 12px;
        font-size: 1.2rem;
        opacity: 0.25;
      }
      .img-placeholder.organic {
        clip-path: var(--clip-organic);
        border-radius: 0;
      }
      .img-placeholder.circle {
        border-radius: 50%;
        aspect-ratio: 1;
      }

      .gallery-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 2fr;
        grid-auto-rows: 200px;
        gap: 12px;
        padding: 32px 24px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .gallery-grid .img-placeholder {
        width: 100%;
        height: 100%;
        cursor: pointer;
        transition: transform var(--anim-fast), box-shadow var(--anim-fast);
      }
      .gallery-grid .img-placeholder:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      }
      .gallery-grid .img-placeholder:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
      .gallery-grid .img-placeholder:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 2; }
      .gallery-grid .img-placeholder:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 3; }
      .gallery-grid .img-placeholder:nth-child(4) { grid-column: 3 / 4; grid-row: 2 / 3; }
      .gallery-grid .img-placeholder:nth-child(5) { grid-column: 1 / 2; grid-row: 3 / 4; }
      .gallery-grid .img-placeholder:nth-child(6) { grid-column: 2 / 5; grid-row: 3 / 4; }
      @media (max-width: 700px) {
        .gallery-grid {
          grid-template-columns: 1fr 1fr;
          grid-auto-rows: 160px;
        }
        .gallery-grid .img-placeholder:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
        .gallery-grid .img-placeholder:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
        .gallery-grid .img-placeholder:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
        .gallery-grid .img-placeholder:nth-child(4) { grid-column: 1 / 3; grid-row: 3 / 4; }
        .gallery-grid .img-placeholder:nth-child(5) { grid-column: 1 / 2; grid-row: 4 / 5; }
        .gallery-grid .img-placeholder:nth-child(6) { grid-column: 2 / 3; grid-row: 4 / 5; }
      }

      #lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(6px);
        align-items: center;
        justify-content: center;
      }
      #lightbox.open {
        display: flex;
      }
      #lightbox img {
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      }
      #lightbox .lb-close {
        position: absolute;
        top: 24px;
        right: 32px;
        color: #fff;
        font-size: 2.4rem;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity var(--anim-fast);
        background: none;
        border: none;
      }
      #lightbox .lb-close:hover { opacity: 1; }

      .card-grid-asymmetric {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1400px;
        margin: 20px auto 0;
        padding: 80px 40px;
      }
      .card-grid-asymmetric .card {
        margin: 0;
      }
      @media (max-width: 1000px) {
        .card-grid-asymmetric {
          grid-template-columns: 1fr;
          gap: 16px;
          padding: 44px 16px 28px;
        }
      }

      body {
        line-height: 1.85;
        background:
          url("https://www.transparenttextures.com/patterns/paper-fibers.png"),
          var(--bg-primary);
        background-blend-mode: multiply;
      }

      /* === MAINTENANCE OVERLAY ===
         To enable: uncomment the block below and the <div id="maintenance-overlay"> in the body.
         To disable: comment them out again. */

      /*
      #maintenance-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(180deg, rgba(214, 224, 208, 0.98), rgba(192, 205, 186, 0.98));
        z-index: 99999;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
      }

      body > *:not(#maintenance-overlay) {
        display: none !important;
      }
      */

      .maintenance-content {
        max-width: 500px;
      }

      .maintenance-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 16px;
      }

      .maintenance-content p {
        font-family: 'Manrope', sans-serif;
        font-size: 1.2rem;
        color: var(--text-body);
        margin-bottom: 12px;
      }

      .maintenance-contact {
        margin-top: 24px;
        font-size: 1rem;
      }

      .maintenance-contact a {
        color: #1d5fbf;
      }

      @media (max-width: 600px) {
        .maintenance-content h1 { font-size: 1.8rem; }
        .maintenance-content p { font-size: 1rem; }
      }

      h1, h2, h3 {
        letter-spacing: 0.06em;
      }

      .hero-ingress {
        max-width: 850px;
        margin: 0 auto;
        padding: 90px 30px 50px;
        text-align: center;
      }

      .hero-ingress p {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 400;
        font-size: 1.35rem;
        line-height: 1.65;
        color: var(--text-dark);
        margin: 0;
      }

      .hero-ingress p + p {
        margin-top: 20px;
      }

      /* CARDS */
      .card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(5px, calc(8vw - 40px), 60px);
        max-width: 1400px;
        margin: auto;
        padding: 60px 30px;
        align-items: stretch;
      }

      .card-grid-single {
        display: flex;
        justify-content: center;
        margin-top: 40px;
      }
      .card-grid-single .card {
        max-width: 420px;
      }

      .card {
        background:
          var(--gradient-card) padding-box,
          linear-gradient(135deg, rgba(151, 111, 82, 0.78), rgba(194, 160, 128, 0.72) 22%, rgba(150, 174, 152, 0.72) 48%, rgba(117, 149, 136, 0.78) 72%, rgba(180, 138, 104, 0.76)) border-box;
        border-radius: 20px;
        padding: 26px 28px;
        border: 8px solid transparent;
        box-shadow: inset 0 0 0 4px rgba(255, 248, 238, 0.42),
                    inset 0 0 18px rgba(125, 145, 133, 0.08),
                    0 16px 30px rgba(74, 60, 49, 0.16),
                    0 8px 14px rgba(74, 60, 49, 0.08),
                    inset 0 1px 0 rgba(255,255,255,0.76);
        cursor: pointer;
        transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
        min-width: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
      }

      .card:hover {
        transform: translateY(-4px) scale(1.005);
        background:
          var(--card-hover) padding-box,
          linear-gradient(135deg, rgba(151, 111, 82, 0.82), rgba(194, 160, 128, 0.76) 22%, rgba(150, 174, 152, 0.76) 48%, rgba(117, 149, 136, 0.82) 72%, rgba(180, 138, 104, 0.8)) border-box;
        box-shadow: inset 0 0 0 4px rgba(255, 248, 238, 0.5),
                    inset 0 0 18px rgba(125, 145, 133, 0.1),
                    0 22px 42px rgba(74, 60, 49, 0.2),
                    0 10px 18px rgba(74, 60, 49, 0.1),
                    inset 0 1px 0 rgba(255,255,255,0.82);
      }

      .card h3 {
        font-size: 1.72rem;
        margin: 0 0 6px;
        line-height: 1.2;
        min-height: 2.4em;
      }
      .card p { margin: 0; font-size: 0.95rem; line-height: 1.5; }

      .card-note {
        margin-top: auto;
        padding-top: 10px;
        font-size: 0.84rem;
        color: var(--text-body);
        opacity: 0.55;
        transform: translateY(0);
        transition: opacity 0.25s ease, transform 0.25s ease;
      }

      .card-note .card-arrow {
        display: inline-block;
        margin-left: 6px;
        opacity: 0.5;
        transform: translateX(0);
        transition: all 0.25s ease;
      }

      .card:hover .card-note,
      .card:focus .card-note,
      .card:active .card-note {
        opacity: 1;
        transform: translateY(0);
      }

      .card:hover .card-note .card-arrow,
      .card:focus .card-note .card-arrow,
      .card:active .card-note .card-arrow {
        opacity: 1;
        transform: translateX(0);
      }

      .card:hover .card-note,
      .card:focus .card-note {
        opacity: 1;
        transform: translateY(0);
      }

      /* ABOUT */
      .about {
        max-width: 1300px;
        margin: auto;
        padding: 90px 60px 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .about > div {
        width: 100%;
        max-width: 900px;
      }

      .about-story {
        display: block;
      }

      .about-copy {
        width: 100%;
        max-width: 900px;
      }

      .about-copy h2 {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 2.5rem;
      }

      .about-copy h3 {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 1.55rem;
        font-weight: 600;
      }

      .about-mobile-image {
        display: none;
      }

      .about-mobile-portrait {
        display: none;
      }

      .about-mobile-image-collage {
        display: none;
      }

      .about-copy p {
        margin: 0;
      }

      .about-copy p + p,
      .about-copy ul + p {
        margin-top: 22px;
      }

      .about-copy ul {
        margin: 24px 0;
        padding-left: 24px;
        line-height: 1.8;
      }

      /* About: hovering quote image after the om-mig text */
      .about-quote-image {
        position: relative;
        margin: 74px 0 0;
        width: min(1320px, 92vw);
        left: 50%;
        transform: translateX(-50%);
        aspect-ratio: 4 / 3;
        cursor: default;
      }

      .about-quote-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
        border-radius: 0;
        box-shadow: none;
        -webkit-mask-image: radial-gradient(ellipse 86% 86% at 50% 50%, black 12%, transparent 62%);
        mask-image: radial-gradient(ellipse 86% 86% at 50% 50%, black 12%, transparent 62%);
        filter: drop-shadow(0 12px 26px rgba(74, 60, 49, 0.12));
      }

      .about-quote-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        padding: 32px;
        padding-top: 110px;
        background: linear-gradient(to bottom, rgba(253, 248, 242, 0.5), rgba(253, 248, 242, 0.22) 45%, rgba(253, 248, 242, 0.06));
      }

      .about-quote-text {
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 600;
        font-size: 1.55rem;
        line-height: 1.5;
        color: var(--text-dark);
        max-width: 520px;
        text-shadow: 0 2px 4px rgba(253, 248, 242, 0.95), 0 0 18px rgba(253, 248, 242, 0.85);
        cursor: pointer;
        transition: transform 0.25s ease, text-shadow 0.25s ease;
      }

      .about-quote-text:hover,
      .about-quote-text:focus-visible {
        transform: translateY(-2px);
        text-shadow: 0 3px 6px rgba(253, 248, 242, 0.98), 0 0 22px rgba(253, 248, 242, 0.92);
        outline: none;
      }

      .about-quote-cta {
        position: static;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 22px;
        background: var(--card-bg);
        border: 2px solid rgba(138, 154, 130, 0.95);
        border-radius: 999px;
        box-shadow: 0 12px 28px rgba(74, 60, 49, 0.2), inset 0 1px 0 rgba(255,255,255,0.76);
        font-family: 'Manrope', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 1.02rem;
        letter-spacing: 0.02em;
        color: var(--text-dark);
        cursor: pointer;
        margin-top: 28px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      }

      .about-quote-cta:hover,
      .about-quote-cta:focus {
        box-shadow: 0 18px 36px rgba(74, 60, 49, 0.26), inset 0 1px 0 rgba(255,255,255,0.82);
        background: var(--card-hover);
      }

      .about-quote-cta-arrow {
        display: inline-flex;
        font-size: 1.3rem;
        line-height: 1;
        color: var(--accent-dark);
      }

      .about-collage {
        width: 240px;
        max-width: 100%;
        display: block;
        border-radius: 20px;
        box-shadow: 0 14px 34px rgba(0,0,0,0.12);
        clip-path: inset(8px round 20px);
      }

      /* CV, BUBBLES, FRAME */
      .cv-card {
        display: block;
        margin-top: 64px;
        padding: 24px;
        background: var(--card-bg);
        border: 3px solid rgba(138, 154, 130, 0.95);
        border-radius: 16px;
        cursor: pointer;
        max-width: 300px;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
      }

      .cv-card-note {
        display: block;
        margin-top: 8px;
        font-size: 0.92rem;
        color: var(--text-body);
      }

      .cv-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,0.12);
      }

      .pull-quote {
        margin: 52px 0;
        padding: 18px 24px;
        border-left: 4px solid var(--accent);
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        font-size: 1.18rem;
        line-height: 1.6;
        color: var(--text-dark);
        background: linear-gradient(to right, rgba(168, 181, 162, 0.1), transparent);
        border-radius: 0 6px 6px 0;
      }

      .pull-quote:first-child {
        margin-top: 0;
      }

      .pull-quote:last-child {
        margin-bottom: 0;
      }

      .pull-quote[onclick] {
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
      }

      .pull-quote[onclick]:hover {
        background: linear-gradient(to right, rgba(168, 181, 162, 0.25), transparent);
        border-left-color: var(--accent);
      }

      .pull-quote[onclick]::after {
        content: ' \2192';
        font-style: normal;
        font-family: inherit;
        opacity: 0.45;
      }

      .devise {
        margin: 28px 0;
        padding: 8px 0 8px 48px;
      }

      .devise p {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 400;
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-dark);
        margin: 0;
      }

      .devise p + p {
        margin-top: 8px;
      }

      .about-chip {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
        padding: 10px 22px 10px 10px;
        background: var(--gradient-bubble);
        border: 3px solid rgba(138, 154, 130, 0.95);
        border-radius: 999px;
        box-shadow: 0 10px 22px rgba(74, 60, 49, 0.14), inset 0 1px 0 rgba(255,255,255,0.76);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        max-width: 100%;
      }

      .about-chip-img {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center 20%;
        box-shadow: 0 4px 12px rgba(74, 60, 49, 0.22);
        flex-shrink: 0;
      }

      .about-chip-text {
        display: flex;
        flex-direction: column;
        line-height: 1.45;
        text-align: left;
      }

      .about-chip-text strong {
        font-family: 'Playfair Display', serif;
        font-size: 1.28rem;
        font-weight: 600;
        color: var(--text-dark);
        letter-spacing: 0.02em;
      }

      .about-chip-text em {
        font-family: 'Manrope', sans-serif;
        font-style: italic;
        font-size: 0.82rem;
        color: var(--text-body);
        opacity: 0.85;
      }

      .about-chip-arrow {
        margin-left: 6px;
        font-size: 1.3rem;
        color: var(--accent-dark);
        opacity: 0;
        transform: translateX(-6px);
        transition: opacity 0.25s ease, transform 0.25s ease;
      }

      .about-chip:hover,
      .about-chip:focus,
      .about-chip:active {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(74, 60, 49, 0.2), inset 0 1px 0 rgba(255,255,255,0.82);
        border-color: var(--accent);
      }

      .about-chip:hover .about-chip-arrow,
      .about-chip:focus .about-chip-arrow,
      .about-chip:active .about-chip-arrow {
        opacity: 1;
        transform: translateX(0);
      }

      .bubbles {
        margin-top: 84px;
        display: flex;
        flex-direction: column;
        gap: 58px;
        position: relative;
      }

      .bubble {
        background: var(--bubble-fill, linear-gradient(145deg, #fbf7f1 0%, #eef4ea 100%));
        border: 3px solid rgba(138, 154, 130, 0.95);
        padding: 24px 32px 26px;
        max-width: 400px;
        position: relative;
        box-shadow: 0 16px 30px rgba(74, 60, 49, 0.16), 0 8px 14px rgba(74, 60, 49, 0.08), inset 0 1px 0 rgba(255,255,255,0.76);
        font-size: 1.12rem;
        line-height: 1.55;
        color: var(--text-dark);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .bubble-text {
        display: block;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        letter-spacing: 0.01em;
        text-wrap: balance;
      }

      .bubble-note {
        display: block;
        margin-top: 8px;
        font-family: 'Manrope', sans-serif;
        font-size: 0.92rem;
        color: var(--text-body);
      }

      .bubble-note .bubble-arrow {
        display: inline-block;
        margin-left: 6px;
        opacity: 0;
        transform: translateX(-4px);
        transition: all 0.25s ease;
      }

      .bubble-clickable:hover .bubble-note .bubble-arrow,
      .bubble-clickable:active .bubble-note .bubble-arrow {
        opacity: 1;
        transform: translateX(0);
      }

      .bubble-clickable {
        cursor: pointer;
      }

      .bubble-clickable:hover {
        box-shadow: 0 20px 38px rgba(74, 60, 49, 0.18), 0 9px 16px rgba(74, 60, 49, 0.09), inset 0 1px 0 rgba(255,255,255,0.82);
      }

      /* Vänster bubbla: mer tydlig seriebubbla */
      .bubble-left {
        --rotate: -3.5deg;
        --bubble-fill: linear-gradient(145deg, #fffaf4 0%, #edf4ea 100%);
        align-self: flex-start;
        max-width: 380px;
        padding: 26px 34px 28px;
        border-radius: 44px 50px 40px 34px / 34px 38px 48px 50px;
        transform: translateX(-150px) rotate(var(--rotate));
      }

      .bubble-left:before,
      .bubble-left:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 0 0 28px 0;
        transform: rotate(18deg);
      }

      .bubble-left:before {
        left: 26px;
        bottom: -18px;
        background: rgba(138, 154, 130, 0.95);
        z-index: 0;
      }

      .bubble-left:after {
        left: 29px;
        bottom: -13px;
        width: 26px;
        height: 26px;
        background: linear-gradient(145deg, #fffaf4 0%, #edf4ea 100%);
        z-index: 1;
      }

      /* Höger bubbla: mer tydlig seriebubbla */
      .bubble-right {
        --rotate: 3.5deg;
        --bubble-fill: linear-gradient(145deg, #f8fbf5 0%, #f5ece0 100%);
        align-self: flex-end;
        max-width: 390px;
        padding: 26px 34px 28px;
        border-radius: 50px 44px 34px 40px / 38px 34px 50px 48px;
        transform: rotate(var(--rotate)) translateX(-150px);
      }

      .bubble-right:before,
      .bubble-right:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 0 0 0 28px;
        transform: rotate(-18deg);
      }

      .bubble-right:before {
        right: 38px;
        bottom: -18px;
        background: rgba(138, 154, 130, 0.95);
        z-index: 0;
      }

      .bubble-right:after {
        right: 41px;
        bottom: -13px;
        width: 26px;
        height: 26px;
        background: linear-gradient(145deg, #f8fbf5 0%, #f5ece0 100%);
        z-index: 1;
      }

      .bubble:hover {
        transform: translateX(-150px) translateY(-3px) scale(1.01) rotate(var(--rotate, 0deg));
      }

      .bubble-right:hover {
        transform: translateY(-3px) scale(1.01) rotate(var(--rotate)) translateX(-150px);
      }

      /* FRAME */
      .frame-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px 40px;
        display: flex;
        justify-content: center;
      }

      .frame {
        margin-top: 28px;
        padding: 26px 30px;
        border: 12px solid transparent;
        background:
          linear-gradient(180deg, rgba(255,253,246,0.98), rgba(252,246,236,0.98)) padding-box,
          linear-gradient(135deg, rgba(151, 111, 82, 0.78), rgba(194, 160, 128, 0.72) 22%, rgba(150, 174, 152, 0.72) 48%, rgba(117, 149, 136, 0.78) 72%, rgba(180, 138, 104, 0.76)) border-box;
        box-shadow: inset 0 0 0 5px rgba(255, 248, 238, 0.42),
                    inset 0 0 24px rgba(125, 145, 133, 0.1),
                    0 18px 40px rgba(0,0,0,0.16),
                    0 8px 18px rgba(0,0,0,0.08);
        cursor: pointer;
        width: 100%;
        max-width: 520px;
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 1.22rem;
        line-height: 1.25;
        color: var(--text-dark);
        letter-spacing: 0.03em;
        transform: rotate(0deg);
        border-radius: 18px;
        transition: transform 0.24s ease, box-shadow 0.24s ease;
      }

      .frame:hover {
        transform: scale(1.008);
        box-shadow: inset 0 0 0 5px rgba(255, 248, 238, 0.46),
                    inset 0 0 24px rgba(125, 145, 133, 0.12),
                    0 20px 40px rgba(0,0,0,0.17),
                    0 10px 18px rgba(0,0,0,0.09);
      }

      .frame-note {
        display: block;
        margin-top: 8px;
        font-size: 0.85rem;
        color: var(--text-body);
      }

      /* CONTACT & FOOTER */
      .contact {
        max-width: 800px;
        margin: auto;
        padding: 100px 30px 60px;
        text-align: center;
        border-top: 1px solid rgba(138, 154, 130, 0.2);
      }

      .contact-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--text-dark);
        margin: 0 0 2px;
        font-weight: 600;
      }

      .contact-org {
        font-family: 'Manrope', sans-serif;
        font-size: 0.95rem;
        color: var(--text-body);
        margin: 0 0 20px;
      }

      .contact-detail {
        font-family: 'Manrope', sans-serif;
        font-size: 0.95rem;
        color: var(--text-body);
        margin: 0 0 6px;
      }

      .contact-detail a {
        color: var(--accent-dark);
        text-decoration: underline;
        text-underline-offset: 0.18em;
      }

      .contact-note {
        font-family: 'Manrope', sans-serif;
        font-size: 0.8rem;
        color: var(--text-body);
        margin: 18px 0 0;
        opacity: 0.6;
      }

      .contact-image-wrapper {
        max-width: 1000px;
        margin: -20px auto 0;
        padding: 0 20px;
      }
      .contact-image {
        width: 100%;
        height: 340px;
        object-fit: cover;
        object-position: center 85%;
        border-radius: 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 55%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent, black 20%, black 55%, transparent 100%);
      }

      .modal#naringslivet { background: rgba(0,0,0,0.25); }

      .modal-content {
        background: var(--card-bg);
        width: auto;
        max-width: 95vw;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
      }

      .modal-header {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
      }

      .modal-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.1rem;
        margin: 0;
        color: var(--text-dark);
      }

      .modal-content p {
        font-family: 'Manrope', sans-serif;
        margin: 0;
        font-size: 1.1rem;
        color: var(--text-body);
        line-height: 1.85;
      }

      .modal-content h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin: 0;
        color: var(--text-dark);
        text-align: left;
      }

      .modal-body {
        max-width: var(--modal-text-width);
        margin: 0 auto;
        text-align: left;
        padding: 0 var(--modal-gutter);
      }

      .modal-body p + p,
      .modal-body p + ul,
      .modal-body ul + p {
        margin-top: 18px;
      }

      .modal-body p + h4,
      .modal-body ul + h4 {
        margin-top: 28px;
      }

      .modal-body h4 + p,
      .modal-body h4 + ul {
        margin-top: 12px;
      }

      .modal-jump-link {
        display: inline-block;
        margin-top: 28px;
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        color: var(--text-dark);
        text-decoration: underline;
        text-underline-offset: 0.18em;
        cursor: pointer;
      }

      .modal-jump-link:hover {
        color: var(--accent-dark);
      }

      .email-link {
        color: #1d5fbf;
        cursor: pointer;
        text-decoration: underline;
      }

      .email-link:hover {
        color: #154a95;
      }

      .modal-body ul {
        margin: 0;
        padding-left: 22px;
        font-family: 'Manrope', sans-serif;
        font-size: 1.1rem;
        color: var(--text-body);
        line-height: 1.85;
      }

      .policy-section {
        max-width: var(--modal-text-width);
        margin: 0 auto 28px;
        padding: 0 var(--modal-gutter);
      }

      .policy-section h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.35rem;
        margin: 0 0 10px;
        color: var(--text-dark);
        text-align: left;
      }

      .policy-section p {
        text-align: left;
      }

      .policy-section p + p {
        margin-top: 18px;
      }

      .modal.is-open {
        animation: fadeIn 0.3s ease;
      }

      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      .close {
        position: fixed;
        top: 61px;
        right: calc(var(--card-inset, 2.5vw) + 5px);
        font-size: 32px;
        cursor: pointer;
        color: var(--text-dark);
        transition: color 0.3s ease, background 0.3s ease;
        line-height: 1;
        z-index: 1100;
        background: var(--accent-clr, rgba(247, 240, 232, 0.7));
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        backdrop-filter: blur(4px);
        opacity: 0.85;
      }

      .close:hover {
        color: white;
        background: var(--accent-clr, rgba(247, 240, 232, 0.95));
        opacity: 1;
      }

      /* Position the close button after each modal card's own right edge */
      .modal.naringslivet-style { --card-inset: 16px; }
      #galleri { --card-inset: calc((100vw - 1100px) / 2); }

      /* Galleri bildrutnät ska gå kant till kant utan textindrag */
      .modal#galleri .modal-body {
        padding: 0;
      }

      /* MOBILE */
      @media (max-width: 1150px) {
        /* No close button on mobile – the menu toggle closes the modal instead */
        .close {
          display: none;
        }

        /* Hero ingress mobile */
        .hero-ingress {
          padding: 32px 18px 18px;
        }

        .hero-ingress p {
          font-size: 1.1rem;
        }

        /* Cards: 2 columns, compact */
        .card-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
          padding: 36px 12px 16px;
        }

        .card {
          padding: 18px 16px;
          border-width: 4px;
          border-radius: 12px;
          box-sizing: border-box;
          box-shadow: inset 0 0 0 2px rgba(255, 248, 238, 0.42),
                      0 6px 12px rgba(74, 60, 49, 0.1),
                      0 3px 6px rgba(74, 60, 49, 0.05);
        }

        .card h3 {
          font-size: 1.1rem;
          margin: 0 0 4px;
          display: block;
          -webkit-line-clamp: unset;
          -webkit-box-orient: unset;
          overflow: visible;
        }

        .card p {
          font-size: 0.8rem;
          line-height: 1.3;
          margin: 0;
        }

        .card-note {
          display: none;
        }

        /* About: mobile - text full width, portrait below right-aligned */
        .about {
          display: flex;
          flex-direction: column;
          max-width: 100%;
          margin: 0 auto;
          gap: 0;
          padding: 12px 18px 40px;
          align-items: normal;
          justify-content: normal;
        }

        .about > div {
          order: 1;
          width: 100%;
          max-width: 100%;
          display: block;
          margin-bottom: 16px;
        }

        .about-images {
          display: none !important;
          height: 0;
          overflow: hidden;
          margin: 0;
          padding: 0;
          gap: 0;
        }

        .about-mobile-image {
          display: none;
        }

        .about-mobile-portrait {
          display: block;
          max-width: 340px;
          margin: 0 auto 20px;
        }

        .about-mobile-portrait .pull-quote {
          margin: 0;
          font-size: 1.15rem;
          line-height: 1.6;
          padding: 18px 22px;
        }

        .about-mobile-image-collage {
          display: block;
          float: right;
          max-width: 100px;
          margin: 10px 0 20px 16px;
          border-radius: 12px;
          border: 0px solid red;
          shape-outside: inset(0 0 10px 0);
        }

        .about-portrait-block {
          display: none;
        }

        .about-portrait-caption {
          display: none;
        }

        .about-collage-block {
          display: none;
        }

        .about-copy {
          width: 100%;
          max-width: 100%;
          transform: none;
        }

        .about-copy h2 {
          font-size: 1.6rem;
          margin-bottom: 12px;
        }

        .about-quote-image {
          width: 100%;
          margin-top: 44px;
        }

        .about-quote-overlay {
          padding-top: 88px;
        }

        .about-quote-text {
          font-size: 1.2rem;
          max-width: 100%;
        }

        .about-quote-cta {
          position: absolute;
          top: auto;
          bottom: 14px;
          right: 14px;
          padding: 10px 16px;
          font-size: 0.92rem;
          margin-top: 0;
        }

        .about-chip {
          margin-top: 20px;
          width: 100%;
          justify-content: flex-start;
        }

        .about-chip-img {
          width: 52px;
          height: 52px;
        }

        /* Bubbles: less spacing */
        .bubbles {
          margin-top: 40px;
          gap: 39px;
        }

        .bubble {
          max-width: 100%;
          padding: 18px 22px 20px;
          border-width: 2px;
        }

        .bubble-left,
        .bubble-right {
          align-self: center;
          transform: rotate(var(--rotate));
        }

        .bubble-left {
          transform: rotate(-2deg);
        }

        .bubble-right {
          transform: rotate(2deg);
        }

        .bubble-left:hover {
          transform: rotate(-2deg) translateY(-3px) scale(1.01);
        }

        .bubble-right:hover {
          transform: rotate(2deg) translateY(-3px) scale(1.01);
        }

        /* Frame: less spacing */
        .frame-section {
          padding: 0 14px 0;
          margin-bottom: 0;
        }

        .frame {
          margin-top: 0;
          margin-bottom: 0;
          padding: 18px 18px;
          border-width: 6px;
          font-size: 1rem;
        }

        /* About: mobile - text full width, portrait below right-aligned */
        .about {
          display: flex;
          flex-direction: column;
          max-width: 100%;
          margin: 0 auto;
          margin-top: 0;
          gap: 0;
          padding: 20px 18px 60px;
          align-items: normal;
          justify-content: normal;
        }

        .frame {
          margin-top: 20px;
          padding: 18px 18px;
          border-width: 6px;
          font-size: 1rem;
        }

        /* Contact: less spacing */
        .contact {
          padding: 30px 18px 50px;
        }

        .modal {
          overflow-x: hidden;
        }

        .modal-content {
          margin: 0 6px;
          max-width: calc(100vw - 12px);
          width: auto;
          border-radius: 10px;
        }

        .modal-content h3 {
          font-size: 1.2rem;
        }

        .modal-content p {
          font-size: 0.95rem;
        }

        .modal-body-left {
          text-align: left;
        }
      }

      /* Phones: keep "Bakgrund" CTA in-flow under the quote, inside a taller box so text never overlaps */
      @media (max-width: 768px) {
        .about-quote-image {
          aspect-ratio: 4 / 5;
        }
        .about-quote-cta {
          position: static;
          top: auto;
          right: auto;
          bottom: auto;
          margin-top: 28px;
        }
      }

      /* Tablets: keep the "Bakgrund" CTA in-flow under the quote (desktop behavior). */
      @media (min-width: 769px) and (max-width: 1150px) {
        .about-quote-cta {
          position: static;
          top: auto;
          right: auto;
          bottom: auto;
          margin-top: 28px;
        }
      }

      /* === NÄRINGSLIVET-STIL MODALER (delad layout) === */
      .modal#naringslivet { --accent-clr: #A95F4B; }
      .modal#samtal { --accent-clr: #738C70; }
      .modal#handledning { --accent-clr: #A67C6B; }

      .modal.naringslivet-style .modal-content {
        max-width: 98vw;
        padding: 20px 0;
        overflow: visible;
      }
      .modal.naringslivet-style .modal-header {
        padding: 0;
      }
      .modal.naringslivet-style .modal-body {
        max-width: 100%;
        margin: 0;
        text-align: left;
        padding: 0;
      }
      .modal.naringslivet-style .container-narrow {
        max-width: var(--modal-text-width);
        margin: 0 auto;
        padding: 0 var(--modal-gutter);
      }

      .modal.naringslivet-style .container-wide {
        max-width: 1080px;
      }

      .modal.naringslivet-style .cv-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 8px;
      }

      .modal.naringslivet-style .cv-card {
        background: #FBF8F2;
        border-radius: 16px;
        padding: 32px;
        border: 1px solid #E9E1D8;
        box-shadow: 0 4px 16px rgba(74, 60, 49, 0.07);
        max-width: 100%;
        text-align: left;
        margin-top: 0;
        cursor: default;
        transition: none;
      }

      .modal.naringslivet-style .cv-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(74, 60, 49, 0.07);
      }

      .modal.naringslivet-style .cv-card h3 {
        margin-bottom: 14px;
      }

      .modal.naringslivet-style .cv-card p {
        margin: 0 0 18px;
      }

      .modal.naringslivet-style .cv-card p:last-child {
        margin-bottom: 0;
      }

      .modal.naringslivet-style .cv-kicker {
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        color: var(--text-dark);
        opacity: 0.85;
        margin-bottom: 10px;
      }
      .modal.naringslivet-style .section-warm {
        background: color-mix(in srgb, var(--accent-clr) 12%, #F7F5F2);
        padding: 48px 0;
        margin: 0;
      }
      .modal.naringslivet-style .section-sand {
        background: color-mix(in srgb, var(--accent-clr) 20%, #F3EDE6);
        padding: 48px 0;
        margin: 0;
      }
      .modal.naringslivet-style .section-dark {
        background: var(--accent-clr);
        padding: 48px 0;
        margin: 0;
      }
      .modal.naringslivet-style .section-climate {
        background: color-mix(in srgb, var(--accent-clr) 22%, #F5EDE6);
        padding: 48px 0;
        margin: 0;
      }
      .modal.naringslivet-style .statement-quote {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        font-size: 1.2rem;
        line-height: 1.4;
        color: var(--accent-clr);
        text-align: left;
        letter-spacing: -0.01em;
      }

      .modal.naringslivet-style .modal-kicker {
        margin: 0 0 12px;
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        color: var(--text-dark);
        opacity: 0.82;
      }
      .modal.naringslivet-style .points-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .modal.naringslivet-style .points-list li {
        position: relative;
        padding: 18px 0 18px 32px;
        font-size: 1.05rem;
        line-height: 1.6;
        border-bottom: 1px solid #E5DDD6;
      }
      .modal.naringslivet-style .points-list li:last-child {
        border-bottom: none;
      }
      .modal.naringslivet-style .points-list li::before {
        content: "\2726";
        position: absolute;
        left: 0;
        top: 18px;
        color: var(--accent-clr);
        font-weight: 600;
        font-size: 1rem;
      }
      .modal.naringslivet-style .blockquote {
        margin: 32px 0;
        padding: 0 0 0 32px;
        border-left: 2px solid var(--accent-clr);
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1.6;
        color: var(--text-dark);
      }
      .modal.naringslivet-style .blockquote:first-child {
        margin-top: 0;
      }
      .modal.naringslivet-style .blockquote:last-child {
        margin-bottom: 0;
      }
      .modal.naringslivet-style .dark-quote {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 1.4;
        color: white;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        letter-spacing: -0.01em;
      }
      .modal.naringslivet-style .container-narrow p {
        margin: 0 0 20px;
        font-size: 1.08rem;
        line-height: 1.85;
      }
      .modal.naringslivet-style .container-narrow p:last-child {
        margin-bottom: 0;
      }
      .modal.naringslivet-style h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin: 0 0 24px;
        line-height: 1.2;
        letter-spacing: -0.02em;
        color: var(--text-dark);
      }
      .modal.naringslivet-style h2 + p {
        margin-top: 0;
      }
      .modal.naringslivet-style h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        margin: 0 0 16px;
        line-height: 1.3;
        letter-spacing: -0.01em;
        color: var(--text-dark);
      }

      .modal.naringslivet-style .handledning-main-heading {
        font-family: 'Playfair Display', serif;
        font-size: 2.1rem;
        color: var(--accent-clr);
        text-align: center;
        margin: 0 0 24px;
        line-height: 1.2;
        letter-spacing: -0.02em;
      }

      .modal.naringslivet-style .metoder-text {
        display: flex;
        gap: 40px;
        align-items: flex-start;
      }
      .modal.naringslivet-style .metoder-text-col {
        flex: 1;
      }
      .modal.naringslivet-style .metoder-collage {
        width: 200px;
        flex-shrink: 0;
        text-align: center;
        margin-top: 96px;
      }
      .modal.naringslivet-style .metoder-collage img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      }
      .modal.naringslivet-style .metoder-collage-caption {
        font-size: 0.72rem;
        line-height: 1.5;
        color: var(--text-body);
        margin-top: 10px;
      }

      .modal.naringslivet-style .process-grid {
        display: flex;
        gap: 0;
        margin: 32px 0 24px;
        align-items: stretch;
      }
      .modal.naringslivet-style .process-step {
        flex: 1;
        background: #FFFFFF;
        padding: 28px 28px 32px;
        text-align: center;
        border-top: 2px solid #D4C9C0;
        position: relative;
      }
      .modal.naringslivet-style .process-step + .process-step {
        border-left: 1px solid #D4C9C0;
      }
      .modal.naringslivet-style .step-num {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--accent-clr);
        line-height: 1;
        margin-bottom: 6px;
      }
      .modal.naringslivet-style .step-title {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-dark);
        letter-spacing: -0.01em;
        margin-bottom: 8px;
      }
      .modal.naringslivet-style .step-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-body);
        margin: 0;
      }
      .modal.naringslivet-style .self-portrait {
        position: absolute;
        right: 160px;
        top: 100px;
        width: 220px;
        height: auto;
        opacity: 0.4;
        mix-blend-mode: multiply;
        filter: contrast(1.1) brightness(1.05);
        pointer-events: none;
        z-index: 0;
        clip-path: inset(6% 5% 10% 5% round 40px);
        mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 20%, transparent 78%);
        -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 20%, transparent 78%);
      }
      .modal.naringslivet-style .self-portrait-caption {
        position: absolute;
        right: 160px;
        top: 370px;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 0.82rem;
        line-height: 1.4;
        color: var(--text-body);
        opacity: 0.5;
        text-align: center;
        width: 220px;
        pointer-events: none;
        z-index: 0;
      }

      /* Handledning: move the "Byta stol" image into flow on mobile */
      .modal#handledning .handledning-role-image {
        position: absolute;
        right: 100px;
        top: 50%;
        transform: translateY(-50%);
        width: 300px;
        pointer-events: none;
      }

      @media (max-width: 768px) {
        .modal#handledning .handledning-role-image {
          position: relative;
          right: auto;
          top: auto;
          transform: none;
          width: min(360px, 86vw);
          margin: 18px auto 0;
          pointer-events: auto;
        }

        .modal#handledning .handledning-role-image img {
          height: 260px !important;
        }
      }

      .modal.naringslivet-style .questions-list {
        max-width: 580px;
        margin: 24px auto 20px;
      }
      .modal.naringslivet-style .question-item {
        padding: 14px 0 14px 36px;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.55;
        color: var(--text-dark);
        position: relative;
        border-bottom: 1px solid #E5DDD6;
      }
      .modal.naringslivet-style .question-item:last-child {
        border-bottom: none;
      }
      .modal.naringslivet-style .question-item::before {
        content: "\275D";
        position: absolute;
        left: 0;
        top: 13px;
        color: var(--accent-clr);
        font-style: normal;
        font-size: 1.1rem;
        line-height: 1;
      }
      .modal.naringslivet-style .q-offset-1 { margin-left: 0; }
      .modal.naringslivet-style .q-offset-2 { margin-left: 32px; }
      .modal.naringslivet-style .q-offset-3 { margin-left: 12px; }
      .modal.naringslivet-style .q-offset-4 { margin-left: 44px; }
      .modal.naringslivet-style .q-offset-5 { margin-left: 24px; }
      .modal.naringslivet-style .result-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 28px;
        margin-top: 8px;
      }
      .modal.naringslivet-style .result-item {
        padding-top: 16px;
        border-top: 1px solid #D4C9C0;
      }
      .modal.naringslivet-style .result-item .sym {
        display: block;
        font-size: 1.4rem;
        line-height: 1;
        margin-bottom: 12px;
        color: var(--accent-clr);
        font-weight: 300;
      }
      .modal.naringslivet-style .result-item p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-body);
      }
      .modal.naringslivet-style .contact-row {
        text-align: center;
        margin-top: 28px;
      }
      .modal.naringslivet-style .contact-row a {
        color: var(--accent-clr);
        text-decoration: underline;
      }
      .modal.naringslivet-style .contact-row a:hover {
        color: #154a95;
      }
      @media (max-width: 768px) {
        :root {
          --modal-gutter: 20px;
        }
        .modal.naringslivet-style .modal-content {
          padding: 0;
        }
        .modal.naringslivet-style .modal-header {
          padding: 0;
        }
        .modal.naringslivet-style .container-narrow {
          padding: 0 var(--modal-gutter);
        }

        .modal.naringslivet-style .cv-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }

        .modal.naringslivet-style .cv-card {
          padding: 22px;
        }

        .modal.naringslivet-style .container-wide {
          max-width: 880px;
        }
        .modal.naringslivet-style h2 {
          font-size: 1.5rem;
        }
        .modal.naringslivet-style .metoder-text {
          flex-direction: column;
        }

        /* Prevent accordion headings from forcing horizontal overflow on mobile */
        .modal.naringslivet-style .accordion-toggle {
          white-space: normal;
          gap: 12px;
          align-items: flex-start;
        }

        .modal.naringslivet-style .accordion-toggle::after {
          flex-shrink: 0;
          margin-top: 2px;
        }
        .modal.naringslivet-style .metoder-collage {
          width: 180px;
          margin: 0 auto;
        }
      .modal.naringslivet-style .modal-header h3 {
        color: var(--accent-clr);
      }
      .modal.naringslivet-style .statement-quote {
          font-size: 1.3rem;
        }
        .modal.naringslivet-style .dark-quote {
          font-size: 1.3rem;
        }
        .modal.naringslivet-style .result-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .modal.naringslivet-style .process-grid {
          flex-direction: column;
        }
        .modal.naringslivet-style .process-step + .process-step {
          border-left: none;
          border-top: 1px solid #D4C9C0;
        }
        .modal.naringslivet-style .self-portrait {
          position: relative;
          right: auto;
          top: auto;
          display: block;
          margin: 20px auto 4px;
          width: 180px;
          opacity: 0.45;
          mix-blend-mode: multiply;
          filter: contrast(1.1) brightness(1.05);
          clip-path: inset(6% 5% 10% 5% round 40px);
          mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 20%, transparent 78%);
          -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 20%, transparent 78%);
        }
        .modal.naringslivet-style .self-portrait-caption {
          position: relative;
          right: auto;
          top: auto;
          display: block;
          margin: 0 auto 20px;
          text-align: center;
          width: 180px;
          opacity: 0.5;
        }
        .modal.naringslivet-style .section-warm,
        .modal.naringslivet-style .section-sand {
          padding: 28px 0;
        }
        .modal.naringslivet-style .section-dark {
          padding: 36px 0;
        }
        .modal.naringslivet-style .q-offset-1,
        .modal.naringslivet-style .q-offset-2,
        .modal.naringslivet-style .q-offset-3,
        .modal.naringslivet-style .q-offset-4,
        .modal.naringslivet-style .q-offset-5 {
          margin-left: 0;
        }
      }

      /* Samtal: make the "gestaltande" image in-flow on mobile so it can sit after prices */
      .modal#samtal .samtal-nagotmer-image {
        position: absolute;
        right: 0;
        top: 0;
        width: 480px;
        height: 100%;
        min-height: 480px;
        pointer-events: none;
      }

      .modal#samtal .samtal-nagotmer-image img {
        display: block;
        width: 100%;
        height: 100%;
      }

      .modal#samtal .samtal-nagotmer-caption {
        position: absolute;
        right: 20px;
        bottom: 12px;
        font-size: 0.8rem;
        font-style: italic;
        opacity: 0.55;
        z-index: 2;
        color: var(--text-dark);
        line-height: 1.3;
      }

      @media (max-width: 768px) {
        .modal#samtal .samtal-nagotmer-image {
          position: relative;
          right: auto;
          top: auto;
          width: min(340px, 86vw);
          height: auto;
          min-height: 0;
          margin: 18px auto 0;
          pointer-events: auto;
        }

        .modal#samtal .samtal-nagotmer-image img {
          height: 220px;
          object-position: center center !important;
        }

        .modal#samtal .samtal-nagotmer-caption {
          position: relative;
          right: auto;
          bottom: auto;
          text-align: center;
          margin-top: 6px;
        }
      }
