/* ==========================================================================
   Allt i balans — visual refinement layer
   Authored on top of the original builder stylesheet (site.css). It keeps the
   site's own palette (#2E3751 navy, #1C9205 green, #EC4D4D red, warm neutrals)
   and Karla, and gives the pages a calmer, more deliberate rhythm.
   ========================================================================== */

:root {
    /* Brand palette (taken from site.css, not invented) */
    --navy: #2e3751;
    --navy-800: #252c41;
    --navy-900: #1c2130;
    --green: #1c9205;
    --green-strong: #177904;
    --green-deep: #146b04;
    --green-light: #8fe07a;
    --red: #ec4d4d;

    /* Neutrals / tints */
    --paper: #ffffff;
    --mist: #f4f5f2;
    --mist-2: #eceee9;
    --line: #e2e4e0;
    --line-dark: rgba(255, 255, 255, 0.14);
    --ink: #2e3751;
    --ink-soft: #5a6379;
    --ink-on-dark: #ffffff;
    --ink-on-dark-soft: #c6cbdc;

    /* Type */
    --font: Karla, "Helvetica Neue", Arial, sans-serif;
    --tracking-tight: -0.02em;
    --tracking-wide: 0.16em;

    /* Space & shape */
    --container: 1160px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --section-y: clamp(3.75rem, 8vw, 7.5rem);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(46, 55, 81, 0.06), 0 10px 30px -18px rgba(46, 55, 81, 0.35);
    --shadow-md: 0 24px 60px -30px rgba(46, 55, 81, 0.42);

    --ease: cubic-bezier(0.22, 0.72, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    color: var(--ink);
    background: var(--paper);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

p {
    margin: 0 0 1.15em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--green-deep);
    text-decoration: none;
}

a:hover {
    color: var(--green-strong);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

strong,
b {
    font-weight: 700;
}

::selection {
    background: var(--green);
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--green-deep);
    outline-offset: 3px;
    border-radius: 4px;
}

.section--dark :focus-visible,
.site-footer :focus-visible,
.site-header :focus-visible {
    outline-color: var(--green-light);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 200;
    padding: 0.75rem 1.25rem;
    background: var(--navy);
    color: #fff;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top 0.2s var(--ease);
}

.skip-link:focus {
    top: 0;
    color: #fff;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--section-y);
}

.section--tint {
    background: var(--mist);
}

.section--dark {
    background: var(--navy);
    color: var(--ink-on-dark);
}

.section--dark p {
    color: var(--ink-on-dark-soft);
}

.section__head {
    max-width: 46rem;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section__head--center {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--green-deep);
}

.eyebrow::before {
    content: "";
    width: 1.75rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.section--dark .eyebrow {
    color: var(--green-light);
}

.section__head--center .eyebrow::before {
    display: none;
}

.section__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: var(--tracking-tight);
    color: var(--navy);
}

.section--dark .section__title {
    color: #fff;
}

.section__lead {
    margin: 0;
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
    line-height: 1.65;
    color: var(--ink-soft);
}

.section--dark .section__lead {
    color: var(--ink-on-dark-soft);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
        color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--green-strong);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background: var(--green-deep);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: rgba(46, 55, 81, 0.22);
}

.btn--ghost:hover {
    color: var(--navy);
    border-color: var(--navy);
    background: rgba(46, 55, 81, 0.04);
}

.section--dark .btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.section--dark .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn--on-dark {
    background: #fff;
    color: var(--navy);
}

.btn--on-dark:hover {
    background: var(--green-light);
    color: var(--navy-900);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px -20px rgba(46, 55, 81, 0.6);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 0.85rem var(--gutter);
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-brand img {
    width: auto;
    height: clamp(2.6rem, 5vw, 3.4rem);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.25rem);
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list a {
    position: relative;
    display: inline-block;
    padding: 0.4rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.site-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
    color: var(--green-deep);
    text-decoration: none;
}

.site-nav__list a:hover::after,
.site-nav__list a.is-active::after {
    transform: scaleX(1);
}

.site-nav__cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 110;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    cursor: pointer;
}

.nav-toggle__bars {
    position: relative;
    width: 1.15rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: background 0.2s var(--ease);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}

.nav-toggle__bars::before {
    top: -6px;
}

.nav-toggle__bars::after {
    top: 6px;
}

.navigation-open .nav-toggle__bars {
    background: transparent;
}

.navigation-open .nav-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
}

.navigation-open .nav-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(88vw, 22rem);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 6rem 1.75rem 2rem;
        background: var(--paper);
        box-shadow: -20px 0 60px -30px rgba(46, 55, 81, 0.5);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.32s var(--ease), visibility 0s linear 0.32s;
        overflow-y: auto;
    }

    .navigation-open .site-nav {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.32s var(--ease), visibility 0s;
    }

    body.navigation-open {
        overflow: hidden;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav__list a {
        padding: 0.95rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--line);
    }

    .site-nav__list a::after {
        display: none;
    }

    .site-nav__cta {
        margin-top: 1.5rem;
        padding: 0.95rem 1.25rem;
        font-size: 1.05rem;
    }
}

/* --------------------------------------------------------------------------
   Language switch (SE / EN)
   -------------------------------------------------------------------------- */

.lang-switch {
    position: relative;
    z-index: 111;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
}

.lang-switch__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    padding: 0.34rem 0.55rem;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
    color: var(--ink-soft);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
        box-shadow 0.2s var(--ease);
}

a.lang-switch__option:hover {
    color: var(--navy);
    background: rgba(46, 55, 81, 0.07);
    text-decoration: none;
}

.lang-switch__option.is-active {
    color: #fff;
    background: var(--navy);
    box-shadow: 0 1px 2px rgba(46, 55, 81, 0.25);
}

@media (max-width: 400px) {
    .lang-switch__option {
        min-width: 2rem;
        padding: 0.32rem 0.4rem;
    }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 8vw, 7rem);
    background:
        radial-gradient(80rem 36rem at 110% -10%, rgba(28, 146, 5, 0.09), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.hero__title {
    margin: 0 0 1.15rem;
    font-size: clamp(2.4rem, 1.4rem + 4.2vw, 4.15rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--navy);
}

.hero__text {
    max-width: 34rem;
    margin: 0;
    font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink-soft);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.hero__meta li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--green);
}

.hero__media {
    position: relative;
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: 1.5rem -1.5rem -1.5rem 1.5rem;
    background: linear-gradient(140deg, rgba(46, 55, 81, 0.1), rgba(28, 146, 5, 0.12));
    border-radius: var(--radius);
    z-index: 0;
}

.hero__frame {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.hero__frame img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    left: clamp(1rem, 3vw, 1.75rem);
    bottom: clamp(1rem, 3vw, 1.75rem);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.hero__badge-icon {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: rgba(28, 146, 5, 0.12);
    color: var(--green-deep);
    flex: 0 0 auto;
}

.hero__badge-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.hero__badge-text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.35;
}

.hero__badge-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}

.hero__badge-text span {
    color: var(--ink-soft);
}

@media (max-width: 860px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__media {
        order: -1;
    }

    .hero__media::before {
        inset: 1rem -1rem -1rem 1rem;
    }
}

/* --------------------------------------------------------------------------
   Media + split sections
   -------------------------------------------------------------------------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.75rem);
}

.split__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.split__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split__media--portrait img {
    aspect-ratio: 4 / 5;
}

.split__body {
    min-width: 0;
}

.split--reverse .split__media {
    order: 2;
}

@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split--reverse .split__media {
        order: 0;
    }
}

/* Treatment chips inside the dark band */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
    padding: 0;
    list-style: none;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.05rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-pill);
    transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Friskvårdsbidrag logo grid
   -------------------------------------------------------------------------- */

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.6vw, 1.15rem);
    max-width: 34rem;
    margin-inline: auto;
    padding: 0;
    list-style: none;
}

.logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.5rem;
    padding: 1.15rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
        border-color 0.2s var(--ease);
}

a.logo-cell:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 146, 5, 0.4);
    box-shadow: var(--shadow-sm);
}

.logo-cell img {
    width: auto;
    max-width: 100%;
    max-height: 4.25rem;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   Certification strip (About section)
   -------------------------------------------------------------------------- */

.cert-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem 0.85rem;
    margin: 1.5rem 0 1.75rem;
    padding: 0;
    list-style: none;
}

.cert-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
        border-color 0.2s var(--ease);
}

a.cert-strip__item:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 146, 5, 0.4);
    box-shadow: var(--shadow-sm);
}

.cert-strip__item img {
    width: auto;
    max-width: 100%;
    height: 3.25rem;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    padding: 0;
    margin: 0 0 1.75rem;
    list-style: none;
}

.price-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.75rem 1.5rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.price-card--featured {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.price-card__time {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.price-card--featured .price-card__time {
    color: var(--green-light);
}

.price-card__amount {
    margin: 0;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
}

.price-card--featured .price-card__amount {
    color: #fff;
}

.notice {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
    background: var(--mist);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 760px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   2027 price notice
   -------------------------------------------------------------------------- */

.price-notice {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.4rem;
    margin-bottom: 1.75rem;
    padding: clamp(1.35rem, 3vw, 1.9rem);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.price-notice::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--navy));
}

.price-notice__badge {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    flex: 0 0 auto;
}

.price-notice__badge strong {
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: -0.01em;
}

.price-notice__badge span {
    margin-top: 0.15rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-light);
}

.price-notice__body {
    min-width: 0;
}

.price-notice__title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

.price-notice__text {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.price-notice__prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 0.9rem;
    padding: 0;
    list-style: none;
}

.price-notice__prices li {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.price-notice__prices span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.price-notice__prices strong {
    font-size: 1rem;
    color: var(--navy);
}

.price-notice__weekend {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.price-notice__weekend svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    color: var(--green-deep);
    transform: translateY(0.12em);
}

@media (max-width: 620px) {
    .price-notice {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-notice__badge {
        width: 3.6rem;
        height: 3.6rem;
    }

    .price-notice__badge strong {
        font-size: 1.05rem;
    }
}

/* Signed closing line inside the 2027 price notice */
.price-notice__thanks {
    margin: 1.1rem 0 0;
    padding-top: 0.95rem;
    border-top: 1px dashed var(--line);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.price-notice__signature {
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Tax note (friskvårdsbidrag / förmånsbeskattning)
   -------------------------------------------------------------------------- */

.tax-note {
    display: flex;
    gap: 0.85rem;
    max-width: 46rem;
    margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
    padding: 1.1rem 1.35rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-sm);
}

.tax-note__icon {
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    color: var(--green-deep);
    transform: translateY(0.12em);
}

.tax-note__text {
    min-width: 0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ink-soft);
}

.tax-note__text strong {
    color: var(--navy);
}

.tax-note a {
    font-weight: 700;
}

/* Standalone gift-certificate offer note, shown next to a booking CTA */
.offer-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 1.5rem auto 0;
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    color: var(--ink-on-dark-soft);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-pill);
}

.offer-note svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    color: var(--green-light);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.contact-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.5rem 1.6rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--navy);
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
        border-color 0.2s var(--ease);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 146, 5, 0.4);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    text-decoration: none;
}

.contact-card__icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(28, 146, 5, 0.1);
    color: var(--green-deep);
    flex: 0 0 auto;
}

.contact-card__icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.contact-card__label {
    display: block;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.contact-card__value {
    display: block;
    margin: 0.15rem 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.address {
    font-style: normal;
    font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--navy);
}

.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 22rem;
    border: 0;
}

@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) and (min-width: 701px) {
    .contact-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--navy-900);
    color: var(--ink-on-dark-soft);
    padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.site-footer a {
    color: var(--ink-on-dark-soft);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line-dark);
}

.site-footer__brand img {
    width: auto;
    height: 3.4rem;
    margin-bottom: 1.1rem;
    padding: 0.5rem 0.8rem;
    background: #fff;
    border-radius: 10px;
}

.site-footer__brand p {
    max-width: 26rem;
    margin: 0;
    color: var(--ink-on-dark-soft);
}

.site-footer__heading {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: #fff;
}

.site-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.site-footer__list a {
    text-decoration: none;
}

.site-footer__list a:hover {
    text-decoration: underline;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.75rem;
    font-size: 0.9rem;
}

.site-footer__bottom p {
    margin: 0;
}

@media (max-width: 760px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Scroll-in reveal
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 1;
    transform: none;
}

html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

html.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    html.reveal-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn,
    .site-nav,
    .nav-toggle__bars::before,
    .nav-toggle__bars::after {
        transition: none;
    }
}
