/* ===== DESIGN TOKENS ===== */
:root {
    --sage: #4a6741;
    --sage-dark: #2d4228;
    --sage-light: #7a9c6e;
    --sage-mist: #e8ede5;
    --cream: #f7f4ef;
    --warm-white: #fdfcf9;
    --linen: #ede9e0;
    --clay: #c8b8a2;
    --clay-dark: #a8967e;
    --text-dark: #1e2417;
    --text-mid: #4a5240;
    --text-soft: #7a7d72;
    --gold: #b8963e;
    --gold-light: #d4af6a;
    --terra: #c1644a;
    --terra-dark: #a35038;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;

    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 28px;
    --radius-xl: 50px;

    --shadow-card: 0 2px 20px rgba(30, 36, 23, 0.07);
    --shadow-hover: 0 8px 40px rgba(30, 36, 23, 0.14);
    --shadow-cta: 0 4px 24px rgba(74, 103, 65, 0.35);

    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --section-pad: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 80px);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 40px);
}

.tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    background: var(--sage-mist);
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.4em;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 60px);
}

.section-header .section-sub {
    margin: 0 auto;
}

/* ===== EDITORIAL: Vänsterjusterade sektionshuvuden ===== */
#behandlingar .section-header,
#kliniker .section-header,
#recensioner .section-header,
#faq .section-header {
    text-align: left;
    padding-left: 20px;
    border-left: 2px solid var(--sage-light);
}

#behandlingar .section-header .section-sub,
#kliniker .section-header .section-sub,
#recensioner .section-header .section-sub,
#faq .section-header .section-sub {
    margin: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage-dark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-cta);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 103, 65, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--sage-dark);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 13px 26px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--sage-dark);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--sage-dark);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sage-dark);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--sage);
}

.btn-terra {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--terra);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(193, 100, 74, 0.3);
    transition: var(--transition);
}

.btn-terra:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(193, 100, 74, 0.4);
}

/* Outline-knapp i terrakottafärg */
.btn-secondary-terra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--terra);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 13px 26px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--terra);
    transition: var(--transition);
}

.btn-secondary-terra:hover {
    background: var(--terra);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(193, 100, 74, 0.32);
}

.divider-leaf {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto 40px;
    max-width: 200px;
}

.divider-leaf::before,
.divider-leaf::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clay);
}

/* ===== HEADER / NAV ===== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 252, 249, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 184, 162, 0.25);
    transition: box-shadow 0.3s;
}

#site-header.scrolled {
    box-shadow: 0 2px 20px rgba(30, 36, 23, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    color: var(--sage-dark);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--sage);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-links a:hover {
    color: var(--sage-dark);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 12px;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--warm-white);
    padding: 32px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    border-bottom: 1px solid var(--linen);
}

.nav-mobile .btn-primary {
    margin-top: 24px;
    text-align: center;
    justify-content: center;
}

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: clamp(560px, 80vh, 800px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--linen);
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ede9e0 0%, #e3e7de 52%, #d6decf 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
}

.hero-img {
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-left: auto;
}

.hero-img-placeholder {
    width: 55%;
    height: 100%;
    background: linear-gradient(145deg, #cdc8bc 0%, #b5af9f 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-img-placeholder svg {
    width: 48px;
    height: 48px;
}

.hero-img-placeholder span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(237, 233, 224, 0.95) 0%, rgba(237, 233, 224, 0.80) 38%, rgba(237, 233, 224, 0.20) 72%, transparent 100%),
        linear-gradient(to top, rgba(45, 66, 40, 0.22) 0%, transparent 45%);
}

@media (min-width: 1025px) {
    .hero-img-wrap::before {
        opacity: 1;
        background:
            linear-gradient(to right,
                rgba(248, 247, 243, 0.95) 0%,
                rgba(240, 242, 235, 0.90) 22%,
                rgba(232, 237, 229, 0.78) 42%,
                rgba(226, 234, 223, 0.61) 56%,
                rgba(220, 229, 216, 0.42) 68%,
                rgba(232, 237, 229, 0.22) 80%,
                rgba(232, 237, 229, 0.06) 90%,
                transparent 100%),
            radial-gradient(110% 80% at 54% 50%, rgba(232, 237, 229, 0.20) 0%, rgba(232, 237, 229, 0) 62%);
    }

    .hero-overlay {
        background:
            linear-gradient(to right,
                rgba(248, 247, 243, 0.90) 0%,
                rgba(240, 242, 235, 0.82) 28%,
                rgba(232, 237, 229, 0.68) 46%,
                rgba(226, 234, 223, 0.52) 60%,
                rgba(220, 229, 216, 0.30) 74%,
                rgba(232, 237, 229, 0.10) 86%,
                transparent 100%),
            radial-gradient(120% 90% at 52% 48%, rgba(232, 237, 229, 0.16) 0%, rgba(232, 237, 229, 0) 58%),
            linear-gradient(to top, rgba(45, 66, 40, 0.22) 0%, transparent 45%);
    }
}

/* Grain texture on hero */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px;
}

.hero-deco {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 280px;
    height: 280px;
    opacity: 0.07;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: clamp(40px, 6vw, 80px) 0;
}

.hero-content .tag {
    margin-bottom: 20px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--sage-dark);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-mid);
}

.trust-item svg {
    color: var(--sage);
    width: 16px;
    height: 16px;
}

/* Urgency badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    font-weight: 500;
    color: var(--sage-dark);
    background: rgba(255, 255, 255, 0.88);
    padding: 5px 13px;
    border-radius: var(--radius-xl);
    margin-bottom: 18px;
    border: 1px solid rgba(74, 103, 65, 0.2);
    backdrop-filter: blur(6px);
}

.urgency-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse-badge 1.8s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

/* ===== TRUST BAR ===== */
#trust-bar {
    background: var(--sage-dark);
    color: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 620px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    padding: 8px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-stat:last-child {
    border-right: none;
}

.trust-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
}

.trust-stat-from {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 3px;
    font-weight: 400;
}

.trust-stat-unit {
    font-size: 1.1rem;
    opacity: 0.8;
}

.trust-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 4px;
}

/* ===== BOOKING STEPS ===== */
#booking-steps {
    padding: clamp(36px, 4vw, 56px) clamp(18px, 5vw, 80px);
    background: var(--warm-white);
    border-bottom: 1px solid var(--linen);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.booking-steps-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-step {
    text-align: center;
}

.booking-step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage-dark);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.booking-step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.booking-step-desc {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.55;
}

.booking-step-arrow {
    font-size: 1.4rem;
    color: var(--clay);
    padding-top: 14px;
    text-align: center;
}

/* ===== BOOKING STEPS: STAGGERED FADE-IN (desktop only) ===== */
@media (min-width: 1025px) {
    .booking-steps-inner > * {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .booking-steps-inner > :nth-child(1) {
        transition-delay: 0s;
    }

    .booking-steps-inner > :nth-child(2) {
        transition-delay: 0.22s;
    }

    .booking-steps-inner > :nth-child(3) {
        transition-delay: 0.44s;
    }

    .booking-steps-inner > :nth-child(4) {
        transition-delay: 0.66s;
    }

    .booking-steps-inner > :nth-child(5) {
        transition-delay: 0.88s;
    }

    #booking-steps.steps-revealed .booking-steps-inner > * {
        opacity: 1;
        transform: none;
    }
}

/* ===== SERVICES ===== */
#behandlingar {
    padding: var(--section-pad);
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ===== FEATURED FIRST CARD (Esse) ===== */
.service-card[data-type="esse"] {
    grid-column: span 2;
    flex-direction: row;
}

.service-card[data-type="esse"] .service-img {
    flex: 0 0 42%;
    height: auto;
}

.service-card[data-type="esse"] .service-body {
    padding: 26px 32px;
    justify-content: center;
}

.service-card[data-type="esse"] .service-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card[data-type="esse"] .service-desc {
    font-size: 0.92rem;
    max-width: 480px;
}

/* Presentkort: 2 slots till höger, vänster slot tom, bild till höger */
.service-card[data-type="presentkort"] {
    grid-column: 2 / -1;
    flex-direction: row;
}

.service-card[data-type="presentkort"] .service-img {
    flex: 0 0 42%;
    height: auto;
    order: 2;
}

.service-card[data-type="presentkort"] .service-body {
    order: 1;
    padding: 26px 32px;
    justify-content: center;
    background: var(--sage-mist);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200, 184, 162, 0.2);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 200px;
    background: linear-gradient(135deg, var(--linen), var(--clay));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-img svg {
    width: 56px;
    height: 56px;
    color: rgba(74, 103, 65, 0.35);
}

.service-img-deco {
    position: absolute;
    font-size: 6rem;
    opacity: 0.08;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--sage-dark);
}

.service-card[data-type="esse"] .service-img {
    background: linear-gradient(135deg, #dde8d8, #c8d8c0);
}

.service-card[data-type="lakshmi"] .service-img {
    background: linear-gradient(135deg, #e8ddd0, #d8c8b8);
}

.service-card[data-type="picaut"] .service-img {
    background: linear-gradient(135deg, #dce4d8, #c4d0c0);
}

.service-card[data-type="hauschka"] .service-img {
    background: linear-gradient(135deg, #e4ddd8, #d0c4bc);
}

.service-card[data-type="mani"] .service-img {
    background: linear-gradient(135deg, #e8e0d4, #d8ccbe);
}

.service-body {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-brand {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 6px;
}

.brand-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.brand-link:hover {
    border-bottom-color: var(--sage);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.25;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--linen);
}

.service-treatments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.treatment-chip {
    display: inline-block;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: var(--radius-xl);
    background: var(--sage-mist);
    color: var(--sage-dark);
    font-weight: 500;
    transition: var(--transition);
}

.treatment-chip:hover {
    background: var(--sage-dark);
    color: #fff;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== PHILOSOPHY ===== */
#filosofi {
    padding: var(--section-pad);
    background-image: url('images/Ing-Marie_treatment.webp');
    background-attachment: fixed;
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    /* clip är opålitligt på vissa iOS-versioner; klipp bara sidled för att undvika horisontell scroll */
}

#filosofi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(30, 46, 26, 0.70) 0%,
            rgba(30, 46, 26, 0.60) 50%,
            rgba(30, 46, 26, 0.74) 100%);
    z-index: 0;
}

#filosofi .container {
    position: relative;
    z-index: 1;
}

#filosofi .tag {
    background: rgba(122, 156, 110, 0.25);
    color: var(--sage-light);
}

#filosofi .section-title {
    color: var(--cream);
}

#filosofi .section-sub {
    color: rgba(255, 255, 255, 0.70);
}

.filosofi-deco {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 156, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.filosofi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.filosofi-item {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 184, 162, 0.25);
    transition: var(--transition);
}

.filosofi-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.filosofi-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-mist);
    border-radius: 50%;
}

.filosofi-icon svg {
    width: 30px;
    height: 30px;
    color: var(--sage-dark);
}

.filosofi-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.filosofi-text {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ===== PARALLAX BAND ===== */
.parallax-section {
    position: relative;
    height: clamp(260px, 38vw, 460px);
    overflow: hidden;
    background-image: url('images/Ing-Marie_treatment.webp');
    background-attachment: fixed;
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
    /* Ersatt av #filosofi — behåll klassen för ev. framtida bruk */
}

.parallax-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(30, 46, 26, 0.52) 0%,
            rgba(30, 46, 26, 0.28) 50%,
            rgba(30, 46, 26, 0.58) 100%);
}

.parallax-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 clamp(20px, 6vw, 80px);
    text-align: center;
}

.parallax-quote {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 4vw, 2.9rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    max-width: 720px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* ===== THERAPIST ===== */
#terapeut {
    padding: var(--section-pad);
    background: var(--warm-white);
}

.terapeut-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.terapeut-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: var(--radius-lg);
}

.terapeut-img--mobile {
    display: none;
}

.terapeut-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--linen), var(--clay));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(74, 103, 65, 0.3);
    position: relative;
}

.terapeut-img-wrap svg {
    width: 64px;
    height: 64px;
}

.terapeut-img-wrap span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.terapeut-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 6px;
}

.terapeut-role {
    font-size: 0.88rem;
    color: var(--sage);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.terapeut-bio {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.credential-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    margin-top: 7px;
    flex-shrink: 0;
}

/* ===== KLINIKER ===== */
#kliniker {
    padding: var(--section-pad);
    background: var(--sage-mist);
}

.kliniker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.klinik-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.klinik-map {
    height: 200px;
    background: linear-gradient(135deg, #c8d4c0, #a8b89c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.klinik-map svg {
    width: 36px;
    height: 36px;
}

.klinik-map a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg, rgba(74, 103, 65, 0.7), rgba(45, 66, 40, 0.7));
    transition: var(--transition);
}

.klinik-map a:hover {
    background: linear-gradient(135deg, rgba(74, 103, 65, 0.85), rgba(45, 66, 40, 0.85));
}

.klinik-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.klinik-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.klinik-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.klinik-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
    min-width: 0;
}

.klinik-info-row span,
.klinik-info-row a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.klinik-info-row svg {
    width: 16px;
    height: 16px;
    color: var(--sage);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Push btn to bottom of Stockholm card */
.klinik-body > .btn-primary {
    margin-top: auto;
}

/* Järna form toggle */
.jarna-intro {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--sage-dark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-cta);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    margin-top: auto;
}

.form-toggle:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 103, 65, 0.4);
}

.toggle-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.form-toggle.open .toggle-arrow {
    transform: rotate(180deg);
}

/* Collapsible form container */
.form-collapsible {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.form-collapsible.open {
    max-height: 1100px;
    opacity: 1;
}

.form-collapsible-inner {
    padding-top: 20px;
}

/* Järna form */
.jarna-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--linen);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--warm-white);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.jarna-form .btn-primary {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 0.76rem;
    color: var(--text-soft);
    text-align: center;
}

.date-hint {
    font-size: 0.76rem;
    margin-top: 4px;
    min-height: 1em;
}

/* ===== PRESENTKORT ===== */
#presentkort {
    padding: clamp(50px, 6vw, 80px) clamp(18px, 5vw, 80px);
    background: var(--sage-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.presentkort-deco {
    position: absolute;
    font-family: var(--font-display);
    font-size: 14rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.03);
    top: -40px;
    right: -20px;
    pointer-events: none;
    line-height: 1;
}

.presentkort h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 14px;
}

.presentkort p {
    opacity: 0.78;
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.presentkort .btn-primary {
    background: #fff;
    color: var(--sage-dark);
    box-shadow: none;
}

.presentkort .btn-primary:hover {
    background: var(--cream);
}

.presentkort-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.presentkort-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #fff;
    text-decoration: none;
    min-width: 280px;
    flex: 1;
    max-width: 360px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.presentkort-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    pointer-events: none;
}

.presentkort-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.presentkort-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 22px 0 22px 26px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-sizing: content-box;
    opacity: 1;
}

.presentkort-btn span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 22px 26px 22px 20px;
    flex: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    margin-left: 18px;
}

.presentkort-btn strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.presentkort-btn small {
    font-size: 0.72rem;
    opacity: 0.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

.presentkort-btn--alt {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.17);
}

.presentkort-btn--alt:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===== REVIEWS ===== */
#recensioner {
    padding: var(--section-pad);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

#recensioner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(115deg, rgba(247, 244, 239, 0.94) 0%, rgba(247, 244, 239, 0.74) 55%, rgba(247, 244, 239, 0.88) 100%),
        url('images/havtorn-spa.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.42;
    pointer-events: none;
}

#recensioner .container {
    position: relative;
    z-index: 1;
}

.stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars-row .star {
    color: var(--gold);
    font-size: 1.3rem;
}

.rating-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-mid);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(200, 184, 162, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-quote {
    font-size: 3rem;
    line-height: 0.6;
    color: var(--sage-mist);
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sage-dark);
}

.review-name {
    font-weight: 500;
    font-size: 0.88rem;
}

.review-source {
    font-size: 0.76rem;
    color: var(--text-soft);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ===== FAQ ===== */
#faq {
    padding: var(--section-pad);
    background: var(--warm-white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--linen);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--sage-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--sage-dark);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--sage-dark);
}

.faq-item.open .faq-icon svg {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 640px;
}

/* ===== FINAL CTA ===== */
#final-cta {
    padding: clamp(60px, 7vw, 100px) clamp(18px, 5vw, 80px);
    background: var(--linen);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-deco {
    position: absolute;
    font-family: var(--font-display);
    font-size: 20rem;
    font-style: italic;
    color: rgba(74, 103, 65, 0.04);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
}

#final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 14px;
    position: relative;
}

#final-cta p {
    font-size: 0.97rem;
    color: var(--text-soft);
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
}

.final-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 20px;
}

.final-cta-note {
    font-size: 0.78rem;
    color: var(--text-soft);
    display: block;
    text-align: center;
    position: relative;
    line-height: 1.8;
}

.final-cta-star {
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 4px;
    vertical-align: -1px;
}

.final-cta-note svg {
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: radial-gradient(circle at center,
            #314636 0%,
            #233127 60%,
            #1b241d 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: clamp(48px, 6vw, 80px) 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand .nav-logo-text {
    color: #fff;
    font-size: 1.3rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.52);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.65);
}

.footer-social a:hover {
    border-color: var(--sage-light);
    background: rgba(122, 156, 110, 0.25);
    color: #fff;
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.62);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 10px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.62);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--sage-light);
    opacity: 0.85;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.36);
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-book-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 990;
    padding: 12px 20px;
    background: var(--warm-white);
    border-top: 1px solid var(--linen);
    box-shadow: 0 -4px 20px rgba(30, 36, 23, 0.1);
}

.mobile-book-bar .btn-primary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    justify-content: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations – gömmer element BARA om JS är aktivt (via .js-klass på <html>) */
.js .anim {
    opacity: 0;
}

.anim.visible {
    animation: fadeUp 0.6s ease forwards;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}

.anim-delay-2 {
    animation-delay: 0.2s;
}

.anim-delay-3 {
    animation-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */

@media (min-width: 1025px) {
    .faq-list {
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 56px;
    }

    .faq-answer-inner {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-pad: clamp(48px, 6vw, 80px) clamp(14px, 3.2vw, 28px);
    }

    .container {
        padding-left: clamp(14px, 3.2vw, 28px);
        padding-right: clamp(14px, 3.2vw, 28px);
    }

    .section-sub,
    .hero-content,
    .trust-bar-inner {
        max-width: none;
    }

    .booking-steps-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 760px;
    }

    .booking-step-arrow {
        display: none;
    }

    .booking-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .booking-step-num {
        flex-shrink: 0;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .terapeut-inner {
        gap: 40px;
    }
}

@media (max-width: 1199px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {

    .mobile-book-bar {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-stat:last-child,
    .trust-stat:nth-child(3) {
        border-bottom: none;
    }

    .booking-steps-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-step-arrow {
        display: none;
    }

    .booking-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .booking-step-num {
        flex-shrink: 0;
        margin: 0;
    }

    .filosofi-grid {
        grid-template-columns: 1fr;
    }

    .kliniker-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .terapeut-inner {
        grid-template-columns: 1fr;
    }

    .terapeut-img-wrap {
        aspect-ratio: 3/2;
        max-height: 280px;
    }

    .terapeut-img--desktop {
        display: none;
    }

    .terapeut-img--mobile {
        display: block;
        object-position: center center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-img-placeholder {
        display: none;
    }

    .hero-img {
        width: 100%;
        object-position: 62% 22%;
    }

    /* iOS Safari: background-attachment:fixed stöds ej – använd scroll istället */
    .parallax-section {
        background-attachment: scroll;
        background-position: center center;
    }

    #filosofi {
        background-attachment: scroll;
        background-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(237, 233, 224, 0.95) 60%, rgba(237, 233, 224, 0.7) 100%);
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .final-cta-btns .btn-primary,
    .final-cta-btns .btn-secondary,
    .final-cta-btns .btn-terra,
    .final-cta-btns .btn-secondary-terra {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hero-img {
        object-position: 64% 20%;
    }

    /* Trust bar: 2 kolumner + tredje post i full bredd för bättre läsbarhet */
    .trust-bar-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-stat {
        padding: 8px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-stat:last-child {
        border-right: none;
        border-bottom: none;
        grid-column: 1 / -1;
    }

    .trust-stat:nth-child(3) {
        border-bottom: none;
    }

    .trust-stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.07em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Featured card återgår till vertikal på mobil */
    .service-card[data-type="esse"] {
        flex-direction: column;
        grid-column: auto;
    }

    .service-card[data-type="esse"] .service-img {
        flex: unset;
        height: 200px;
    }

    .service-card[data-type="esse"] .service-body {
        padding: 22px 24px;
    }

    .service-card[data-type="esse"] .service-name {
        font-size: 1.35rem;
    }

    .service-card[data-type="presentkort"] {
        grid-column: auto;
        flex-direction: column;
    }

    .service-card[data-type="presentkort"] .service-img {
        flex: unset;
        height: 200px;
        order: unset;
    }

    .service-card[data-type="presentkort"] .service-body {
        order: unset;
        padding: 22px 24px;
    }

    /* Editorial headers: ta bort accentlinje på mobil */
    #behandlingar .section-header,
    #kliniker .section-header,
    #recensioner .section-header,
    #faq .section-header {
        padding-left: 0;
        border-left: none;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary,
    .btn-terra,
    .btn-secondary-terra {
        width: 100%;
        justify-content: center;
    }
}